Yeji's Tech Notes
반응형
SpringBoot VersionUp 전환 대응기 - thymeleaf편
Spring 2025. 2. 14. 16:01

🌸개요🌸SpringBoot version up (1.3.X -> 3.2.1) 과정에서 migration하는 중 타임리프 역시 2 -> 3 버전으로 올라가는 상황이였습니다.이때 thymeleaf에서 #httpServletRequest 기본 기능을 더이상 지원하지 않는 것을 확인했습니다.https://www.thymeleaf.org/doc/articles/thymeleaf31whatsnew.html Thymeleaf 3.1: What’s new and how to migrate - ThymeleafThymeleaf 3.1: What’s new and how to migrate Latest version is Thymeleaf 3.1.3.RELEASE.What’s newSupport for Servlet ..

article thumbnail
SpringMVC-프로젝트 생성 (intellij)
Spring 2021. 12. 5. 17:01

개요 sideProject를 진행하기 위해서 웹앱프로젝트가 필요해 springMVC를 이용해 프로젝트를 생성해보았습니다. 프로젝트 생성 시 사용했던 dependency와 Thymeleaf를 이용해 springBoot page띄우는 법을 정리해놓았습니다. 프로젝트 생성 File -> New -> Project... 클릭 후 위와 같은 환경으로 project를 생성해주었습니다. dependency 추가 gradle에 들어가는 dependencies들을 미리 추가해줍니다. 저는 SpringMVC패턴이 미리 세팅해주는 SpringWeb, 탬플릿을 이용해 HTML페이지를 편리하게 만들어주는 타임리프(Thymeleaf), 특정 어노테이션으로 해당 코드를 추가해주는 Lombok (Getter,Setter etc.....

반응형