일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
- Reversing
- 맵
- 우선순위 큐
- GCP
- 재귀
- 분할 정복
- error
- 문자열
- 스택
- BFS
- dynamic debugging
- Spring
- 데이크스트라
- java
- 최단 경로
- 누적 합
- 시뮬레이션
- 이분 탐색
- 그리디
- c++
- dfs
- DP
- 구현
- JPA
- CVE
- thymeleaf
- web
- OS
- 백트래킹
- 위상 정렬
- Today
- Total
목록thymeleaf (3)
hades

🚨 에러치킨3 게시글을 지우고 싶어서 삭제를 누르면, 아래와 같이 치킨1이 지워졌다. action의 경로도 제대로 된 것을 확인했는데, 왜 이런 일이 일어나는 것일까? 🔍 분석 수정 삭제 문제는 게시글을 나열할 때, th:each를 사용하였고, 수정과 삭제 버튼을 배치하는 과정에서 form에 id를 사용했는데, 이 id가 게시글마다 모두 같게 되어 맨 앞에 있는 게시글이 지워진 것이었다. 👊 해결 수정 ..
🚨 에러Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as expression: "/posts/${post.id}" (template: "loginHome" - line 15, col 12) 🔍 분석post.id를 이용하여 동적으로 경로를 지정하려고 했는데, /posts/${post.id}를 파싱할 수 없다고 한다. 👊 해결아래 레퍼런스 블로그를 참고하니, ${}로 감싸진 변수만이 아니라 다른 문자열이 있는 경우에는 더하기로 잇거나, | |로 감싸주어야 한다. 📖 레퍼런스https://velog.io/@susu1991/Thymeleaf#%EB%A6%AC%ED%84%B0%EB%9F%B4 Thymelea..
🚨 에러 Caused by: org.attoparser.ParseException: Error resolving template [fragments/header], template might not exist or might not be accessible by any of the configured Template Resolvers (template: "home" - line 3, col 7) Caused by: org.thymeleaf.exceptions.TemplateInputException: Error resolving template [fragments/header], template might not exist or might not be accessible by any of the co..