[스프링] Json 받는 방법
12345678910111213141516 com.googlecode.json-simple json-simple 1.1 com.fasterxml.jackson.core jackson-core 2.8.1 com.fasterxml.jackson.core jackson-databind 2.8.1 Colored by Color Scriptercs pom에 기본적으로 추가 123456 @RequestMapping(value = "/html/test3json", method = RequestMethod.POST, produces = "application/json" ) public String test03post(@RequestBody Map jsons) { System.out.println(jsons); retu..
프로그래밍/spring
2018. 10. 8. 17:38