bean,properties설정이란?
Bean의존관계 설정방법
Property값 설정방법
Property파일을 이용한 설정
Bean의존관계 설정방법
Setter Injection
- Setter 메서드를 통해 의존관계가 있는 Bean을 주입하려면 <property>태그사용한다.
- ref는 객체 Bean이름을 통해 주입할 Bean을찾는다.
- value는 단순값이다.
ex)
class
bean.xml
Constructor Injection
- Constructor를 통해 의존관계가 있는 Bean을 주입하려면<constructor-arg>태그를사용한다.
- Constructor 주입방식은 생성자의 파라미터를 이용하기 때문에 한번에 여러개의 객체를 주입할 수 있다.<------------------Setter와차이점
ex)
class
bean.xml
index경우
name경우
Property설정방법
프로퍼티 파일을 이용할 설정방법
- 자주변경되는정보를 사용할때 사용한다.(Ex:DB정보)
- properties파일로 분리하는 깔끔하다.
- key=value로 구성된다.
프로퍼티파일생성
bean.xml
'개발 소발 > 개발 Spring' 카테고리의 다른 글
사용자관리프로젝트(컨트롤러,서비스,DAO,도메인모델)란? (0) | 2017.11.21 |
---|---|
Bean등록 및 메타정보구성이란? (0) | 2017.11.21 |
Junit,Spring-Test란?(의존성예제) (0) | 2017.11.20 |
IoC,DI란? (0) | 2017.11.20 |
STS,maven이란? (0) | 2017.11.20 |