반응형
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
- 자바의 정석
- 프로그래머스
- sec태그
- spring security 설정
- 오버라이딩
- 로그인정보 가져오기
- 혼공얄코
- 티스토리챌린지
- mvc 동작
- 쿠키
- 다형성
- charset 변경
- spring security 로그인정보 가져오기
- 멀티태스킹
- 입출력
- @modelattibute
- 오버로딩
- 리눅스
- 멀티프로세싱
- mvc 구성요소
- CPU
- SQL Mapper
- over()
- 캡슐화
- 객체지향
- 오블완
- java
- 자바의정석
- spring security
- hackerrank
Archives
- Today
- Total
목록java staitc (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