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
- spring security
- 서버
- 낙관적락 비관적락 차이
- 스프링 log
- Redis
- flask
- annotation
- Inno DB
- Android
- JPA
- 암호화
- 스프링 로그
- 개발
- 캠프
- 스프링
- 디자인 패턴
- JPA 동시성
- Optimistic Lock
- 안드로이드
- JPA Lock
- Pessimistic Lock
- spring
- Transaction isolation level
- 스마일게이트
- 서버개발캠프
- spring security 인증
- bean
- JPA 비관적락
- component
- JPA 낙관적락
Archives
- Today
- Total
목록@autowired (1)
모르는게 많은 개발자
[Spring] @Autowired @Qualifier 개념/예제
저번 포스팅에서 XML을 이용해 bean에 DI를 주입하는 방법을 해봤다. 이번에는 Annotation @Autowired와 @Qualifier을 이용해 DI를 주입하는 것을 써보려한다. 1. @Autowired @Autowired는 기존에 XML에 , 를 통해 DI를 주입해오던 방식을 자동으로 해주는 Annotation이다. //기존에는 태그를 이용해 exam 객체를 주입했다. 위의 방식에서 속성 DI역할을 @Autowired를 활용하여 DI를 주입 할 수 있다. public class InlineExamConsole implements ExamConsole { private Exam exam; public InlineExamConsole() { } public InlineExamConsole(Exam..
스프링
2020. 4. 4. 23:18