[Spring] Java 기반으로 Spring 설정 변경하기(1) [xml 기반에서 Java 기반으로 설정 변경하기]
·
▣ Framework/Spring🍃
1. Java 기반으로 Spring 설정 변경하기 기존 시큐리티 적용 시에 xml로 관리할 경우, 예외 페이지 등록이 매우 번거로움. → 시큐리티를 좀 더 쉽게 관리하기 위해 Java로 설정을 변경하려고 함 - 참고할 파일 목록 1) web.xml : 어플리케이션 설정 2) root-context.xml : 스프링 코어 설정 3) servlet-context.xml : 스프링 mvc 설정 2. pom.xml(maven-war-plugin 추가) org.apache.maven.plugins maven-war-plugin 3.2.0 false 3 config 패키지&클래스 생성 package works.yermi.config; import org.springframework.web.servlet.suppor..