[spring] spring boot로 이사 준비
spring 기반의 프로젝트를 spring boot로 프레임워크를 이사할 일이 생겨 1. xml기반으로 생성된 bean을 쉽게 생성하는 방법과 2. yml을 간단하게 생성 및 적용방법까지 적어볼려고 한다. spring application.xml -> spring boot @Configuration @ImportResource(value= {"classpath:applicationContext.xml"}) public class ApplicationConfig { //따로 config 클래스를 생성해도 되고 spring boot application 클래스에 //@importResource만 설정해줘도 된다. } yml은 중복을 허용하지 않는것과 가독성이 좋다라는 장점을 가지고 있습니다.. yml을 작성..