반응형
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 |
Tags
- java
- 스프링부트테스트
- parse
- error
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- easy
- java 11
- statement.executequery() cannot issue statements that do not produce result sets.
- ssl이란?
- springboottest
- Java 1.8
- xcrun: error: invalid active developer path
- JUnit
- Medium
- tls프로토콜확인
- java 1.8 11
- springboot
- mysql executequery error
- ssl프로토콜확인
- log error
- java 여러개 버전
- aws
- java 버전 변경
- AWS CLI
- LeetCode
- OpenFeign
- No tests found for given includes
- mac os git error
- yum install java
- java version
Archives
- Today
- Total
목록spring init method (1)
쩨이엠 개발 블로그
[ Spring ] spring init 초기화 메소드 @PostConstruct
Class에서 초기화 메소드를 실행하고 싶다 @Service public class DataService { static Map qcPopMap; static Map qcItemMap; static List qcCycleList; DataService(){ initMap(); } private void initMap(){ qcStepConfigMap = new HashMap(); qcTargetDataMap = new HashMap(); qcCycleList = new ArrayList(); } } 예전이라면 생성자를 만들어서 그 안에다 집어넣어서 초기화를 시켜줄 수 있었다 DataService(){ initMap(); } 생성자로 init을 하고싶지 않다면 @PostConstruct를 사용한다 @Ser..
개발/Spring
2020. 7. 1. 17:52