반응형
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
- 멀티프로세싱
- 멀티태스킹
- over()
- CPU
- 자바의정석
- authenticationprovider 설정
- 혼공얄코
- 캡슐화
- java
- spring security
- 프로그래머스
- 쿠키
- spring security 커스텀
- 로그인 핸들러 구현
- 오버로딩
- 오버라이딩
- 티스토리챌린지
- userdetailsservice 설정
- 리눅스
- 입출력
- 다형성
- 자바의 정석
- 달리기 경주 자바
- 바탕화면 정리 자바
- 객체지향
- spring security 설정
- hackerrank
- 오블완
- 개인정보 수집 유효기간 자바
- SQL Mapper
Archives
- Today
- Total
목록@PostConstruct (1)
쉽게 쉽게
[Spring] static 변수에 autowired 설정 방법
▤ 목차1. 이슈공통적으로 사용하는 CommonService에서 모든 컨트롤러에서 사용될 public static void 메서드가 하나 있을 때, 이 static void 필드에 @Autowired된 빈을 사용해야 하는 상황이 발생했다.그러나 그냥 static에 @Autowired된 빈을 사용하면 NullpointerException이 발생하게 된다.@Servicepublic class CommonService { @Autowired private MyBean myBean; public static void commonMethod() { myBean.doSomething(); // myBean이 주입되지 않으므로 NPE 발생 }}그 이유는 @Autowired는 인스..
개발공부/Spring
2024. 7. 29. 16:28