-
beanspring framework 2020. 4. 21. 20:48
spring에서는 사용할 bean 객체를 bean configuration file 에 정의를 하고 필요할때 객체를 가져와
사용하는 방법을 이용한다
bean태그의 기본 속성
class:객체를 생성하기 위해 사용할 클래스를 지정
id:bean객체를 가져오기 위해 사용하는 이름을 지정한다
lazy-init:싱글톤인 경우 xml을 로딩할때 객체 생성 여부를 설정한다
true:xml 로딩 시 객체를 생성하지 않고 객체를 가져올 때 생성한다.
scope: 객체의 범위를 설정한다
singleton : 객체를 하나만 생성해서 사용한다.
prototype: 객체를 가져올 때 마다 객체를 생성한다
'spring framework' 카테고리의 다른 글
톰캣 에러 'Publishing to Tomcat v9.0 Server at localhost..' has encountered a problem. (2) 2020.04.24 spring project 역활정리 (0) 2020.04.24 ioc (0) 2020.04.21 spring framework (0) 2020.04.20 spring mvc동작과정 (0) 2020.04.20