Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 튜닝
- 자바
- getChannel()
- 디스패처서블릿
- HWPF
- XACT_STATE
- 진경혜
- XWPF
- transferTo
- 프론트컨트롤러
- ERROR_MESSAGE
- 홈스쿨링
- git
- TRANCOUNT
- 요약
- 요청매핑
- MSSQL
- 아이
- 교육법
- 스프링
- 앵커멤버
- SQL
- 재귀멤버
- renameTo
- 배치
- SQLSTATE=42705
- dm_exec_requests
- java
- spring
- 함수
Archives
- Today
- Total
필기노트
Spring 롬복 본문
반응형
기본 코드
@Component
public class OrderServiceImpl implements OrderService {
private final MemberRepository memberRepository;
private final DiscountPolicy discountPolicy;
@Autowired
public OrderServiceImpl(MemberRepository memberRepository, DiscountPolicy discountPolicy) {
this.memberRepository = memberRepository;
this.discountPolicy = discountPolicy;
}
}
생성자가 딱 1개만 있으면 @Autowired 를 생략할 수 있다.
@Component
public class OrderServiceImpl implements OrderService {
private final MemberRepository memberRepository;
private final DiscountPolicy discountPolicy;
public OrderServiceImpl(MemberRepository memberRepository, DiscountPolicy discountPolicy) {
this.memberRepository = memberRepository;
this.discountPolicy = discountPolicy;
}
}
롬복 라이브러리가 제공하는 @RequiredArgsConstructor 기능을 사용하면 final이 붙은 필드를 모아서 생성자를 자동으로 만들어준다.
@Component
@RequiredArgsConstructor
public class OrderServiceImpl implements OrderService {
private final MemberRepository memberRepository;
private final DiscountPolicy discountPolicy;
}
정리
최근에는 생성자를 딱 1개 두고, @Autowired 를 생략하는 방법을 주로 사용한다. 여기에 Lombok 라이브러리의 @RequiredArgsConstructor 함께 사용하면 기능은 다 제공하면서, 코드는 깔끔하게 사용할 수 있다.
롬복 라이브러리 적용 방법
//lombok 설정 추가 시작
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
//lombok 설정 추가 끝
dependencies {
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testCompileOnly 'org.projectlombok:lombok' // 테스트 의존성 추가
testAnnotationProcessor 'org.projectlombok:lombok' // 테스트 의존성 추가
}
REFERENCE
소스코드
반응형
'김영한 강의 요약' 카테고리의 다른 글
Spring DispatcherServlet(FrontController 패턴) 코드로 이해하기 (0) | 2023.08.09 |
---|---|
MVC패턴에서 JSP 실무 간단 요약 (0) | 2023.08.04 |
Spring 조회한 빈이 모두 필요할 때, Map으로 담는다. (0) | 2023.01.15 |
Spring 스프링 빈을 등록하는 2가지 방법과 의존관계 (0) | 2023.01.14 |
Spring 싱글톤 방식의 주의점 (0) | 2023.01.14 |
Comments