일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- query
- java
- JSON
- spring
- vue Carousel
- vscode tutorial
- Tomcat
- 부스트코스
- bulkinsert
- NoSQL
- jsp
- 구멍가게코딩단
- vue.js
- github
- 기출문제
- INSERT
- jdbc
- mybatis
- swipe 배너
- checkbox
- JAXBContext
- 오라클
- egov
- JQuery
- 마스킹
- Ajax
- mysql
- insertAll
- MariaDB
- 정보처리산업기사
Archives
- Today
- Total
개발새발
Missing URI template variable for method parameter of type string 본문
728x90
반응형
rest api를 만들면서
Missing URI template variable for method parameter of type string
에러가 났다.
@RequestMapping(value="/contents/{contents-mst-seq}")
public ResponseEntity<ContentsVo> contentsDetail(@PathVariable("contentsMstSeq") int contentsMstSeq) {
ContentsVo vo = testService.contentsDetail(contentsMstSeq);
return ResponseEntity.ok(vo);
}
원인 : url로 들어가 있는 {contents-mst-seq}와 @PathVariable에 할당한 변수(contentsMstSeq)가 달라서 발생했다.
해결 : 똑같이 맞춰주니 간단하게 해결됐다.
@RequestMapping(value="/contents/{contents-mst-seq}")
public ResponseEntity<ContentsVo> contentsDetail(@PathVariable("contents-mst-seq") int contentsMstSeq) {
ContentsVo vo = testService.contentsDetail(contentsMstSeq);
return ResponseEntity.ok(vo);
}
728x90
반응형
'[error]' 카테고리의 다른 글
[vue.js] Expected Number with value 3, got String with value "3" (0) | 2021.03.05 |
---|---|
form태그 데이터 전송 실패 400 Bad Request (0) | 2020.12.24 |
[lombok] lombok 사용시 디비 필드명이 ex) v_call_yn 일 경우 error : "Property [vCallYn] not found on type" (1) | 2020.09.24 |
invalid input syntax for type timestamp: "" (0) | 2020.09.07 |
[error] "Multiple annotations found at this line" (0) | 2020.06.24 |
Comments