반응형
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
- java version
- log error
- ssl이란?
- java
- AWS CLI
- java 버전 변경
- error
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- easy
- xcrun: error: invalid active developer path
- java 11
- Java 1.8
- JUnit
- yum install java
- parse
- mysql executequery error
- ssl프로토콜확인
- LeetCode
- java 1.8 11
- springboot
- aws
- Medium
- java 여러개 버전
- statement.executequery() cannot issue statements that do not produce result sets.
- OpenFeign
- springboottest
- mac os git error
- No tests found for given includes
- tls프로토콜확인
- 스프링부트테스트
Archives
- Today
- Total
쩨이엠 개발 블로그
[ Spring ] spring init 초기화 메소드 @PostConstruct 본문
728x90
반응형
Class에서 초기화 메소드를 실행하고 싶다
@Service
public class DataService {
static Map<String, Integer> qcPopMap;
static Map<String, String> qcItemMap;
static List<Integer> qcCycleList;
DataService(){
initMap();
}
private void initMap(){
qcStepConfigMap = new HashMap<>();
qcTargetDataMap = new HashMap<>();
qcCycleList = new ArrayList<>();
}
}
예전이라면 생성자를 만들어서 그 안에다 집어넣어서 초기화를 시켜줄 수 있었다
DataService(){
initMap();
}
생성자로 init을 하고싶지 않다면 @PostConstruct를 사용한다
@Service
public class DataService {
static Map<String, Integer> qcPopMap;
static Map<String, String> qcItemMap;
static List<Integer> qcCycleList;
@PostConstruct
private void initMap(){
qcStepConfigMap = new HashMap<>();
qcTargetDataMap = new HashMap<>();
qcCycleList = new ArrayList<>();
}
}
동일하게 실행되는것을 확인한다
WAS가 뜰 때 서비스가 생성되며 초기화 메소드가 실행된다
@PreDestroy
셧다운시 해야하는 작업이 있을 때 쓰는 어노테이션도 알아두면 좋겠다
728x90
반응형
'개발 > Spring' 카테고리의 다른 글
[ Spring boot] Could not resolve all files for configuration compileClasspath (0) | 2020.08.24 |
---|---|
Maven pom to gradle (0) | 2020.07.13 |
[ Spring ] Failed to determine a suitable driver class (0) | 2020.06.29 |
[ Spring ] SpringBoot test 순서 / 이름 정하기 (@TestMethodOrder / @DisplayName) (0) | 2020.05.20 |
[ Spring ] Springboot test - mockito (Mapper 접근) (0) | 2020.05.19 |
Comments