Notice
Recent Posts
Recent Comments
Tags
- 백준 14567 python
- spring 기초
- 백준 dp
- 장고 기초
- 코테
- 프로그래머스 level1
- Django
- 백준 14567
- 백준
- 백준 14567 파이썬
- 코테 연습
- 프로그래머스 레벨1
- 위상정렬 파이썬
- 스프링 기초
- 백준 다이나믹프로그래밍
- Spring 초보
- 코딩테스트
- 백준 선수과목
- 코딩테스트 연습
- 장고
- 백준 선수과목 python
- 스프링 초보
- dp 알고리즘
- 백준 선수과목 파이썬
- 알고리즘 문제
- 백준 선수과목 14567
- 알고리즘 공부
- programmers
- 프로그래머스
- Django 기초
Archives
- Today
- Total
목록스프링 프로토타입 (1)
일일구름 IT
[Spring] bean의 범위 (Prototype)
Bean의 범위 Spring에서 스프링 컨테이너에 생성된 Bean 객체는 getBean() 메소드로 호출될때 항상 같은 객체가 반환된다. Bean 객체를 호출할때마다 다른 객체로 반환되기 위해서는 Bean 객체를 정의할때 scope 속성을 prototype으로 명시해주면 된다. 다음의 코드와 결과를 보며 싱글톤과 프로토타입의 차이를 확인해보자. // MainClass.java 파일 public static void main(String[] args) { GenericXmlApplication ctx = new GenericXmlApplicationContext("classpath:applicationContext.xml"); InjectionBean injectionBean = ctx.getBean("i..
Spring
2023. 11. 7. 21:29