Thymeleaf 스프링 통합과 폼
Java/spring2024. 2. 15. 16:24Thymeleaf 스프링 통합과 폼

Spring boot에 관련해서 조금 더 공부를 하다가 Thymeleaf에서 Form을 작성할 때 훨씬 수월하고 깔끔하게 작성할 수 있는 방식에 대해서 알게 되었는데 그냥 그렇구나 하고 넘어갈 뻔하다가 블로그에 조그마한 것이라도 정리하는 습관을 다시 들이기 위해 올리기로 했다. 상황 설명 쇼핑몰 서비스를 제공한다고 가정했을 때, 상품을 등록하는 과정에서 체크박스가 사용되는 경우가 많을 텐데 이것을 Spring boot와 Thymeleaf를 통합하여 간단하게 구현할 수 있는 방법을 알아보자 상품 @Data public class Item { private Long id; private String itemName; private Integer price; private Integer quantity; pr..

spring boot 게시판 - 6 <bootstrap 적용하기>
Java/spring 게시판2022. 11. 22. 20:45spring boot 게시판 - 6 <bootstrap 적용하기>

https://magicmk.tistory.com/32 spring boot 게시판 - 5 https://magicmk.tistory.com/31 spring boot 게시판 - 4 https://magicmk.tistory.com/29 spring boot 게시판 - 3 https://magicmk.tistory.com/28 spring boot 게시판 - 2 https://magicmk.tistory.com/25 Spring boot 게시판 - 1 < 간단 회원 가입 구 magicmk.tistory.com 전 편에 thymeleaf의 layout을 적용한 뒤 회원 정보를 컨트롤하는 로직을 구현하다가 머리가 지끈 거려서 화면을 이쁘게 만들어 보고자 이번에는 BootStrap을 적용해 보았다. ✅ Boo..

spring boot 게시판 - 5 <thymeleaf layout 적용>
Java/spring 게시판2022. 11. 21. 17:42spring boot 게시판 - 5 <thymeleaf layout 적용>

https://magicmk.tistory.com/31 spring boot 게시판 - 4 https://magicmk.tistory.com/29 spring boot 게시판 - 3 https://magicmk.tistory.com/28 spring boot 게시판 - 2 https://magicmk.tistory.com/25 Spring boot 게시판 - 1 시스템 구성 Spring boot 2.7.5 Gradle Java 11 Inte magicmk.tistory.com 지난 시간에 열심히 삽질해서 login을 구현했으니 이번에는 쉬어가는 느낌으로 프론트 쪽 thymeleaf 템플릿의 layout을 적용 해봤다. ✅ thymeleaf 디렉토리 구조 templates 디렉토..

spring boot 게시판 - 4 <spring security form login 구현>
Java/spring 게시판2022. 11. 18. 10:25spring boot 게시판 - 4 <spring security form login 구현>

https://magicmk.tistory.com/29 spring boot 게시판 - 3 https://magicmk.tistory.com/28 spring boot 게시판 - 2 https://magicmk.tistory.com/25 Spring boot 게시판 - 1 시스템 구성 Spring boot 2.7.5 Gradle Java 11 Intellij Ultimate 라이브러리 thymeleaf jpa web lombok h2 magicmk.tistory.com 이전 편에 패스워드 암호화를 진행한 뒤 바로 로그인 구현을 위해 삽질을 했는데 진짜 별거 아닌 것 같았지만 수많은 시행착오를 겪느라 구현이 늦어버렸다. spring security config에 WebSecuri..

image