웹/WAS(Spring)
Spring Boot Param받기, Get/Post 사용, 응답 클래스 정의
이번에는 Spring Boot 를 사용해 Parameter를 전달 받는 방법과 Get/Post 방식, 그리고 범용으로 쓸 수 있는 응답 클래스를 제작하는 것을 해보겠습니다. 1. Parameter 전달 받기이전에 만든 HelloController.java 클래스에 아래와 같이 추가합니다.@GetMapping("args") public Hello getArgs( @RequestParam(value = "msg")String msg, @RequestParam(value = "msg2")String msg2) { Hello hello = new Hello(0, msg); hello.setMsg(hello.getMsg() + ", " + msg2); return hello; } - 요청URLhttp://loca..
2017. 11. 8. 22:22
최근댓글