티스토리 뷰
@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' 카테고리의 다른 글
LifecycleProcessor not initialized - call 'refresh' before invoking lifecycle methods (0) | 2018.05.22 |
---|---|
[spring] json으로 텍스트 받을때 물음표로 뜰때 (0) | 2017.10.13 |
스프링 Spring 에서 ArrayList을 사용해서 json 만들기 (0) | 2017.10.10 |
스프링 Spring AJAX 406 Not Acceptable 에러시 해결법 (0) | 2017.10.10 |
spring log4j 와 debug 설정 방법 (0) | 2017.10.10 |