일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 레이아웃
- vscode extension 추천
- NetworkCallback
- 안드로이드 프로젝트
- win10 virtualenv
- 안드로이드 color
- 모듈 배포
- prettier vscode
- 모듈 관리
- android studio 3
- android 튜토리얼
- NetworkInfo 대체
- NetworkInfo deprecated
- android color 클래스
- 안드로이드 스튜디오 설치
- xcode idfa
- 안드로이드 공부
- 안드로이드모듈
- swift idfa 확인방법
- jitpack
- android 개발
- listview adapter
- Log.d
- 안드로이드 view
- 안드로이드 시작하기
- 파이썬 의존성
- prettier 사용법
- vscode extenstion
- 안드로이드 스튜디오
- logcat 사용법
- Today
- Total
목록Spring Framework (2)
세라쌤의 IT 튜토리얼

@Qualifier 만약 이러한 VO 클래스가 있다고 가정하자. public class Fruit { private String fruitName; public void setFruitName(String name) { fruitName = name; } public String getFruitName() { return fruitName; } } 그리고 root-context.xml에 1개의 Fruit Bean을 생성했다고 가정하자. @Autowired 를 사용하여 사과 빈을 HomeController에 등록해보자. @Controller public class HomeController { @Autowired private Fruit fruit; @RequestMapping("/") public Str..

@Autowired https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/beans/factory/annotation/Autowired.html Autowired (Spring Framework 5.1.7.RELEASE API) Marks a constructor, field, setter method or config method as to be autowired by Spring's dependency injection facilities. This is an alternative to the JSR-330 Inject annotation, adding required-vs-optional semanti..