봄 화면 음악(5)쓰기 응답
1331 단어 spring mvc
http://localhost:8080/spring_mvc_test/response/annotation
@RequestMapping(value="/response/annotation", method=RequestMethod.GET)
public @ResponseBody String responseBody() {
String message = "The String ResponseBody";
return message;
}
ResponseEntity(custom status) The String ReponseBody with custom status code(403 Forbidden)
@RequestMapping(value="/response/entity/status", method=RequestMethod.GET)
public ResponseEntity<String> responseEntityStatusCode() {
return new ResponseEntity<String>("the String ResponseBody with custom status code (403 Forbidden)",
HttpStatus.FORBIDDEN);
}
ResponseEntity(custom headers) The String ReponseBody with custom header Content-Type=test/plain
@RequestMapping(value="/response/entity/headers", method=RequestMethod.GET)
public ReponseEntity<String> responseEntityCustomHeaders() {
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.TEXT_PLAIN);
return new ReponseEntity<String>("The String ResponseBody with custom header Content-Type=test/plain",
headers, HttpStatus.OK);
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
@Component와 @Controller의 차이쓸데없이 느껴지던 MVC 계층도, 그냥 되는 거지 싶던 어노테이션도 셀 수 없이 많은 선배 개발자들의 피눈물과 절망, 숨쉬는 내뱉던 그들의 욕지거리와 쌓여가는 재떨이 속 담배꽁초들, 그럼에도 불구하고 끊임 없이 더 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.