«spring-4» 태그된 질문

4
Spring RESTful 애플리케이션에 ResponseEntity <T> 및 @RestController를 사용하는 경우
MVC 및 Rest와 함께 Spring Framework 4.0.7을 사용하고 있습니다. 나는 평화롭게 일할 수 있습니다 : @Controller ResponseEntity&lt;T&gt; 예를 들면 다음과 같습니다. @Controller @RequestMapping("/person") @Profile("responseentity") public class PersonRestResponseEntityController { 이 방법으로 (만들기 만하면) @RequestMapping(value="/", method=RequestMethod.POST) public ResponseEntity&lt;Void&gt; createPerson(@RequestBody Person person, UriComponentsBuilder ucb){ logger.info("PersonRestResponseEntityController - createPerson"); if(person==null) logger.error("person is null!!!"); else logger.info("{}", …

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.