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
- 스프링 핵심 기능
- 자바
- transaction
- QueryDSL
- Proxy
- 스프링 핵심 원리
- springdatajpa
- JPQL
- 스프링
- Servlet
- 김영한
- db
- Exception
- 그리디
- java
- jpa
- 백준
- http
- SpringBoot
- Greedy
- 인프런
- Android
- JDBC
- AOP
- spring
- 알고리즘
- Spring Boot
- pointcut
- Thymeleaf
- kotlin
Archives
- Today
- Total
목록프로파일 분리 (1)
개발자되기 프로젝트
API 개발
데이터 확인을 위해서 샘플 데이터를 추가하자. 테스트케이스 실행에 영향을 주지 않기 위해 톰캣이 돌아갈 때만 샘플 데이터가 들어가도록 설정하자. --> 테스트케이스, 톰캣의 프로파일 분리 1. 프로파일 설정 main.resources.application.yml test.resources.application.yml 2. 샘플 데이터 추가 @Profile 을 통해 application.yml의 active와 대응됨. @PostConstruct : bean 생성 이후 해당 메서드 실행. JPA 데이터 변경은 Transaction안에서 이루어져야함 @Profile("local") @Component @RequiredArgsConstructor public class InitMember { private fi..
인프런/[인프런] QueryDsl
2021. 9. 4. 14:03