728x90
반응형
SMALL
GET, POST만 받아야할때가 있다.
Restful API 는 GET, POST 외에도 여러 종류가 있는데..PUT, DELETE, HEAD, TRACE, OPTIONS ...
WEB-INF/web.xml에 하단의 코드를 추가해주면, 제한할 메소드를 지정할 수 있다.
<security-constraint>
<web-resource-collection>
<web-resource-name>restricted methods</web-resource-name>
<url-pattern>/*</url-pattern>
<http-method>PUT</http-method>
<http-method>DELETE</http-method>
<http-method>HEAD</http-method>
<http-method>OPTIONS</http-method>
<http-method>TRACE</http-method>
</web-resource-collection>
<auth-constraint />
</security-constraint>
728x90
반응형
LIST
'Web&Spring' 카테고리의 다른 글
Tomcat 지정된 서비스가 설치된 서비스로는 없습니다. 오류 해결 (0) | 2024.03.31 |
---|---|
Cannot build Artifact 'project:war exploded' because it is included into a circular dependency 인텔리J (0) | 2024.03.31 |
SSL 현재 적용 상태를 테스트하는 사이트 (0) | 2024.03.27 |
nslookup 이용해서 도메인으로 ip 조회하기 (0) | 2023.03.16 |
gson null 값도 응답 필드 포함되도록 처리 (0) | 2023.03.16 |