스프링 타입 컨버터
@RestController
public class HelloController {
@GetMapping("/hello-v2")
public String helloV2(@RequestParam Integer data) {
System.out.println("data = " + data);
return "ok";
}
}http://localhost:8080/hello-v2?data=10@ModelAttribute UserData data
class UserData {
Integer data;
}/users/{userId}
@PathVariable("data") Integer data타입 변환 예시
스프링과 타입 변환
참고
Last updated