[스프링1] 6장. 빈 라이프 사이클과 범위
해당 포스트는 초보 웹 개발자를 위한 스프링 5 프로그래밍 입문 [최범균 저] 책 내용을 참고하였습니다. ❗컨테이너 초기화와 종료 📌기본 public class Main { public static void main(String[] args) { //1. 컨테이너 초기화 AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(AppContext.class); //2. 컨테이너에서 빈 객체를 구해서 사용 Greeter g1 = ctx.getBean("greeter", Greeter.class); Greeter g2 = ctx.getBean("greeter", Greeter.class); System.out.println..
22-23/22-23 Spring 1
2022. 11. 5. 10:02