Skip to content

Instantly share code, notes, and snippets.

@msbaek
Created December 21, 2025 03:45
Show Gist options
  • Select an option

  • Save msbaek/afabcfa19db043a62a9ae76563f50f3b to your computer and use it in GitHub Desktop.

Select an option

Save msbaek/afabcfa19db043a62a9ae76563f50f3b to your computer and use it in GitHub Desktop.
도메인 서비스가 JpaRepository에 직접 의존
// 도메인 서비스가 JpaRepository에 직접 의존
@Service public class OrderService {
private final OrderRepository orderRepository; // JpaRepository 상속
public void createOrder(OrderRequest request) {
// 도메인 로직이 JPA에 종속됨
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment