[Spring Boot] Thymeleaf와 JSP 동시에 쓰기 - 게시판 웹
개요 View로 JSP를 사용하는 게시판과 Thymeleaf를 사용하는 게시판 2개로 나누기 위해 설정 파일에서 JSP와 Thymeleaf가 충돌나지 않도록 설정해준다. 설정 파일 #view resolver spring.mvc.view.prefix=/WEB-INF/views/ spring.mvc.view.suffix=.jsp #thymeleaf spring.thymeleaf.prefix=classpath:templates/ spring.thymeleaf.suffix=.html spring.thymeleaf.view-names=thymeleaf/* #on dev env spring.thymeleaf.cache=false 우선 JSP, Thymelaf 모두 prefix, suffix를 알맞게 설정한다. 두 ..