- xml config vs java config 비교표(글 하단에 있음)
https://oingdaddy.tistory.com/m/230


- spring => spring-boot
component-scan 과 같은 경우는 springboot를 사용하면 Application.java 파일의 위치만 최상위에 있으면 별도로 설정을 해주지 않아도 된다. 그리고 예전처럼 applicationContext, web-applicationContext를 별도로 구분하지 않는 추세이므로 applicationContext에서는 @Servcie, @Repository, web-applicationContext에서는 @Controller를 include 시키는건 거의 하지 않는다.
출처: https://oingdaddy.tistory.com/m/228


- root-context
https://velog.io/@hanblueblue/Spring-xml-configuration%EC%9D%84-java-configuration%EC%9C%BC%EB%A1%9C-%EB%B3%80%EA%B2%BD%ED%95%98%EA%B8%B0

- dispather-servlet & web.xml
https://velog.io/@hanblueblue/Spring-xml-configuration%EC%9D%84-java-configuration%EC%9C%BC%EB%A1%9C-%EB%B3%80%EA%B2%BD%ED%95%98%EA%B8%B0-2-Web.xml-dispatcher-servlet


- spring MVC Tutorial
https://www.baeldung.com/spring-mvc-tutorial


- @EnableWebMvc VS WebMvcConfigurer
스프링에서 제공해주는 웹 기능들에 추가적으로 커스터마이징을 하기를 원한다면 @EnableWebMvc없이 WebMvcConfigurer를 구현한 설정 파일만 등록해주어야 하며, 만약 WebMvcConfigurer를 구현하면서 @EnableWebMvc를 같이 붙여주면 스프링의 기본 설정들이 일부 무시된다.
출처: https://mangkyu.tistory.com/176 [MangKyu's Diary:티스토리]


- Spring root and servlet context with Java config
https://stackoverflow.com/questions/28293400/spring-root-and-servlet-context-with-java-config








'spring' 카테고리의 다른 글

Spring Profiles  (0) 2022.12.08
스프링 관련 블로그  (0) 2022.12.05
@Conditional  (0) 2022.08.23
deep copy Object  (0) 2022.04.04
@RequestMapping value or url 가져오기  (0) 2022.04.02
Posted by 張's blog
,