티스토리 뷰
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | <dependency> <groupId>com.googlecode.json-simple</groupId> <artifactId>json-simple</artifactId> <version>1.1</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.8.1</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.8.1</version> </dependency> | cs |
pom에 기본적으로 추가
1 2 3 4 5 6 | @RequestMapping(value = "/html/test3json", method = RequestMethod.POST, produces = "application/json" ) public String test03post(@RequestBody Map<String, Object> jsons) { System.out.println(jsons); return "./html/test3"; } | cs |
RequestBody를 꼭 써야 한다. 그래야 받은 텍스트 전채를 인식한다.
위는 Map형식으로 String으로 인식하는 방법은
1 2 3 4 5 6 | @RequestMapping(value = "/html/test3json", method = RequestMethod.POST, produces = "application/json" ) public String test03postString(@RequestBody String jsons) { System.out.println(jsons); return "./html/test3"; } | cs |
Map을 String으로 고치면 된다.
'프로그래밍 > spring' 카테고리의 다른 글
[스프링 부트] 롬복 lombok 에서 builder() 가 안뜰때 (0) | 2018.10.24 |
---|---|
[스프링] @RequestParam @ModelAttribute @SessionAttributes (0) | 2018.10.08 |
[스프링] Spring 에서 Map과 List을 사용해서 json 만들기 (0) | 2018.10.08 |
[Spring] AppEngine에 자바 스프링 올리기 (0) | 2018.05.27 |
[spring] 한글 출력 방법 web.xml 설정 (0) | 2018.05.22 |