[Spring Boot] 쿠키와 Thymeleaf를 사용한 다국어 처리
·
Spring
1. 들어가며회사에서 다국어 처리 기능을 구현했습니다.회사에서 사용한 `스프링 레거시 + JSP`를 그대로 정리할까 하다가 스프링 부트는 어떻게 다른지 궁금해서 `스프링 부트 + thymeleaf` 로 다국어 처리 하는 방법을 정리하며 간단한 기능을 구현해 보겠습니다. 2. LocaleConfig.javapackage greathyeon.com.springstudy.config;import org.springframework.context.MessageSource;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframewor..
[Spring Boot] thymeleaf 에러 : org.thymeleaf.exceptions.TemplateInputException
·
Spring
로컬에서는 잘 되던 코드가 aws에 올리고 나니 에러를 일으켰다.그야말로 어...? 아까는 됐는데 상황이다.바로 putty 에서 에러 로그를 살펴봤습니다.  Exception processing template "pages/myPage/indexMypage": Error resolving template [pages/myPage/indexMypage], template might not exist or might not be accessible by any of the configured Template Resolvers  그대로 검색해보니 저만 이런 문제를 겪은게 아니었습니다.  보통 다른이들은 controller의 메서드에서 return값으로 page 경로를 반환할 때 경로 가장 앞에 /를 붙여서 문..
그레이트현
'Spring' 카테고리의 글 목록