Backend/Spring+Boot

Spring 어노테이션 정리

findmypiece 2021. 4. 20. 10:19
728x90
이글은 지속적으로 업데이트 되는 글이다.

@ResponseStatus

Controller 또는 내부 메소드에 정의하는 것으로 응답상태코드를 내가 원하는 것으로 강제할 수 있다.

@RestController
@RequestMapping("/hello")
public class HelloController {

    @RequestMapping(method=RequestMethod.GET)
    @ResponseStatus(HttpStatus.BAD_REQUEST)
    public void getMethod() {
    }
}

 

728x90

'Backend > Spring+Boot' 카테고리의 다른 글

SpringBoot MVC 자동구성 제어하기  (0) 2021.04.21
SpringBoot 정적자원  (0) 2021.04.20
SpringBoot 에러페이지 정의  (0) 2021.04.19
SpringBoot 2.4 Config file processing  (0) 2021.04.16
h2 DB 초기 데이터 생성  (0) 2021.03.30