사용자 도구

사이트 도구


springframework

Spring Framework

Offline(No Internet Connection) 상태에서의 Spring 설정 파일

기본 Context 실행

public class Main {
    private static final Logger log = LoggerFactory.getLogger(Main.class);
    public static void main(String[] args) {
 
        AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext([ProjectContext].class);
        try {
 
            UserService userService = context.getBean(UserService.class);
        } finally {
            context.close();
        }
    }
}

등록된 모든 bean 목록보기

  • 토비의 Spring 3.1 1권 692쪽
@Autowired DefaultListableBeanFactory bf;
 
for (String name : bf.getBeanDefinitionNames()) {
  System.out.println(name + "\t" + bf.getBean(name).getClass().getCanonicalName());
}

동일한 이름의 Bean 중복 정의

동일한 이름의 Bean을 동일 컨텍스트(부모/자식간 말고)에서 여러번 생성할 경우 앞서 생성된 것을 Override 해버린다. java - Defining the same Spring bean twice with same name

springframework.txt · 마지막으로 수정됨: 2022/10/24 14:01 저자 kwon37xi