Spring/spring_유용한것

jsp, thymeleaf 동시에 사용하기...

slow333 2023. 6. 5. 22:59

application.properties 파일 설정

 

### concurrent apply jsp and thymeleaf
# web-inf spring-mvc... for jsp templates : web-inf/view/ 밑에 것은 jsp에서 처리
spring.mvc.view.prefix=/WEB-INF/view/
spring.mvc.view.suffix=.jsp


# template for thymeleaf : default fold /resources/templates/th/ 밑에 것은 thymeleaf로 처리
spring.thymeleaf.prefix= classpath:/templates/
spring.thymeleaf.suffix= .html
spring.thymeleaf.view-names= th/*