반응형
TestController
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package com.myspring.pro29.ex01;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/test/*")
public class TestController {
@RequestMapping(value="notice/{num}", method=RequestMethod.GET)
public int notice(@PathVariable("num") int num) throws Exception{
return num;
}
}
|
cs |
실행 결과
반응형
'코딩 기록 > JSP' 카테고리의 다른 글
[JSP] ResponseEntity 사용해서 응답하기 (0) | 2021.05.28 |
---|---|
[JSP] @RequestBody와 @Response 사용하기 (0) | 2021.05.28 |
[JSP] @RestController 이용해 컬렉션 객체 전달하기 (0) | 2021.05.28 |
[JSP] @RestController 이용해 VO 객체 전달하기 (0) | 2021.05.27 |
[JSP] @RestController 문자열 전달하기 (0) | 2021.05.27 |