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