티스토리 뷰
Scope - 스프링 컨테이너에서 어떻게 스프링빈이 관리되는지에 관한 설정이다.
1. singleton - 하나의 객체로 공유 - default 값이다.
2. prototype - 요청마다 객체를 생성한다.
2-1 prototype scoped bean은 다른 scope과 다르게 자동으로 destroy-method가 호출되지 않는다.
2-2 그렇기 때문에 반드시 코드에서 리소스 해제까지 완료해야 한다.
2-3. destroy method를 호출하는 방법이 있긴 한데 필요시까지 잘안쓰니까 정리 안 한다.
3. request - web request 범위
4. session - web session 범위
5. global-session - application 전체에 걸친 범위
How to use
1. Bean 생성 시에 아래처럼 추가로 scope을 지정하여 명기할 수 있다.
<bean id="footballCoach" class="pe.pilseong.ioc.coaches.FootballCoach" scope="prototype">
<constructor-arg ref="goodFortuneService"></constructor-arg>
<property name="emailAddress" value="heops79@gmail.com"></property>
<property name="salary" value="100000"></property>
</bean>
Life cycle
1. Container started
2. Bean instantiated
3. Dependencies Injected
4. Internal Spring processing
5. Custom Init method invoked
6. Custom Destory method invoked
How to set Init and destory method
1. bean정의 시 생성하는 클래스의 init-method, destroy-method를 지정할 수 있다.
<bean id="baseballCoach" class="pe.pilseong.ioc.coaches.BaseballCoach"
init-method="printMyFirstName"
destroy-method="printMyLastName">
<property name="fortuneService" ref="goodFortuneService"></property>
<property name="email" value="${pilseong.email}"></property>
<property name="address" value="${pilseong.address}"></property>
</bean>
init, destroy 메소드 정의 시 신경써야 할 점들
Access modifier
The method can have any access modifier (public, protected, private)
어떤 접근자를 지정해도 된다. 의미는 없다.
Return type
The method can have any return type. However, 'void' is most commonly used. If you give a return type just note that you will not be able to capture the return value. As a result, "void" is commonly used.
반환 타입도 어떤 것도 가능하다. void가 많이 쓰이는데 값을 반환해도 사용할 수 없기 때문이다.
Method name
The method can have any method name.
어떤 이름도 가능하다.
Arguments
The method can not accept any arguments. The method should be no-arg.
인자를 받지 않는다. 반드시 진자가 없어야 한다.
'Spring > Spring Basic' 카테고리의 다른 글
Spring : Web MVC - Request parameter 받기 (0) | 2020.04.22 |
---|---|
Spring : Web MVC with XML configuration (0) | 2020.04.22 |
Spring : Configuration with Java Config Class - 설정 및 외부 properties 에서 읽어오기 (0) | 2020.04.22 |
Spring : Configuration with XML configuration + Spring Annotations + @Qualifier (0) | 2020.04.22 |
Spring : Configuration with XML configuration (0) | 2020.04.22 |
- Total
- Today
- Yesterday
- 도커 개발환경 참고
- AWS ARN 구조
- Immuability에 관한 설명
- 자바스크립트 멀티 비동기 함수 호출 참고
- WSDL 참고
- SOAP 컨슈머 참고
- MySql dump 사용법
- AWS Lambda with Addon
- NFC 드라이버 linux 설치
- electron IPC
- mifare classic 강의
- go module 관련 상세한 정보
- C 메모리 찍어보기
- C++ Addon 마이그레이션
- JAX WS Header 관련 stackoverflow
- SOAP Custom Header 설정 참고
- SOAP Custom Header
- SOAP BindingProvider
- dispatcher 사용하여 설정
- vagrant kvm으로 사용하기
- git fork, pull request to the …
- vagrant libvirt bridge network
- python, js의 async, await의 차이
- go JSON struct 생성
- Netflix Kinesis 활용 분석
- docker credential problem
- private subnet에서 outbound IP 확…
- 안드로이드 coroutine
- kotlin with, apply, also 등
- 안드로이드 초기로딩이 안되는 경우
- navigation 데이터 보내기
- 레이스 컨디션 navController
- raylib
- one-to-many
- 상속
- 하이버네이트
- 매핑
- hibernate
- 자바
- form
- Angular
- 설정
- Spring
- XML
- RestTemplate
- Many-To-Many
- MYSQL
- one-to-one
- mapping
- Spring Security
- Rest
- WebMvc
- jsp
- Validation
- login
- Security
- 외부파일
- 로그인
- 스프링
- crud
- 설정하기
- spring boot
- 스프링부트