[spring] json을 받을때 파라메터를 모를때 방법
@ResponseBody@RequestMapping(value = "/json", method = RequestMethod.POST, produces = "application/json; charset=utf-8")public String jsonx(@RequestBody String body) { @RequestBody String body 를 쓰면 파라메터 이름을 몰라도 body로 일단 받을 수 있다.위는 json을 받아서 json으로 return 시키는 부분인데 파라메터를 몰라서 이걸 써야 했다.
프로그래밍/spring
2017. 10. 12. 17:18