WEB/SpringMVC
SpringMVC :: 스프링(Spring)의 범위 scope, 싱글톤(singleton)
스프링의 범위 Scope 스프링은 default scope 값으로 singleton(싱글톤)을 가지고 있다. 그래서 따로 설정하지 않아도, 싱글톤으로 되어 있기때문에 생략이 가능하다. 싱글톤 말고도 session, request, prototype와 같은 값들로 설정이 가능하다. applicationCTX.xml hongku 26 그래도 scope의 값으로 singleton으로 설정해보자 Main.java package com.spring.ex; import org.springframework.context.support.GenericXmlApplicationContext; public class Main { public static void main(String[] args) { GenericXmlAp..
2018. 3. 10. 21:08
최근댓글