일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- lambda
- BFS
- 재귀함수
- 카카오
- Set
- 수학
- 백준
- 정규식
- 이분탐색
- KAKAO BLIND RECRUITMENT
- backjoon
- 동적 계획법
- divmod
- 자바
- Re
- 위클리 챌린지
- DateTime
- 그리디
- dfs
- 프로그래머스
- python
- Zip
- 추석맞이 코딩챌린지
- heapq
- programmers
- 파이썬
- 정렬
- java
- Combinations
- 다익스트라
Archives
- Today
- Total
목록pathvariable (1)
상상쓰
[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..
Programming
2021. 8. 26. 15:55