일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 그리디
- Combinations
- 파이썬
- 동적 계획법
- 추석맞이 코딩챌린지
- 정렬
- KAKAO BLIND RECRUITMENT
- 프로그래머스
- Set
- divmod
- 이분탐색
- 위클리 챌린지
- 정규식
- heapq
- python
- 다익스트라
- lambda
- Zip
- Re
- backjoon
- 자바
- 재귀함수
- DateTime
- BFS
- programmers
- dfs
- 카카오
- 수학
- java
- 백준
Archives
- Today
- Total
상상쓰
[Spring] @PathVariable을 이용한 경로(@RequestMapping) 변수 본문
@ReqeustMapping(value = "/Contents/{id}.do")
public String getPage(@PathVariable String id, HttpServletReqeust request, ModelMap model) throws Exception {
System.out.println(id); // https://localhost/Contents/01.do > id = "01"
return "page/01";
}
@ReqeustMapping(value = "/Contents{id}.do")
public String getPage(@PathVariable String id, HttpServletReqeust request, ModelMap model) throws Exception {
System.out.println(id); // https://localhost/Contents01.do > id = "01"
return "page/01";
}
변수의 값은 파라미터의 타입에 맞게 변환해준다. (@PathVariable int id 로 설정하였는데 {id} 가 "string" 이라면 400 error)
@PathVariable 을 이용한 변수는 두 개 이상 사용할 수도 있다.
'Programming' 카테고리의 다른 글
[java] HashMap value(값)로 정렬하기 (0) | 2021.10.24 |
---|---|
[java] PriorityQueue(우선순위 큐) 소개 (0) | 2021.10.24 |
[javascript] chart.js 활용하기 (0) | 2021.08.23 |
[Firebase] 짧은 동적 링크 만들기 (java) (0) | 2021.07.27 |
[Firebase] 짧은 동적 링크 만들기 (jquery) (0) | 2021.07.23 |
Comments