Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- pointcut
- SpringBoot
- transaction
- 스프링 핵심 원리
- 스프링 핵심 기능
- java
- Exception
- 김영한
- 자바
- 스프링
- QueryDSL
- Android
- jpa
- 알고리즘
- Spring Boot
- db
- JDBC
- spring
- 백준
- JPQL
- 그리디
- Servlet
- Greedy
- 인프런
- http
- springdatajpa
- Thymeleaf
- kotlin
- AOP
- Proxy
Archives
- Today
- Total
목록상대경로 (1)
개발자되기 프로젝트
[Thymeleaf] URL 링크
1. URL 링크 사용법 URL 링크 생성할 경우 @{...} 사용 2. 예시 2.1 Controller @GetMapping("/link") public String link(Model model){ model.addAttribute("param1", "data1"); model.addAttribute("param2", "data2"); return "basic/link"; } 2.2 link.html ()로 뒤에 붙은 파라미터 중 PathVariable로 사용 안된 Parameter는 QueryParameter로 사용됨. basic url --> url : localhost:8080/hello 이동 hello queryparam QueryParameter --> url : localhost:8080/..
인프런/[인프런] 스프링 MVC 2
2021. 9. 18. 10:11