728x90
반응형
SMALL

'2024/06/22'에 해당되는 글 15건

  1. 2024.06.22 HTTP method 제한하기 (get, post만 받기 / restful api, web.xml)
Web&Spring2024. 6. 22. 21:23
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
Posted by 사슴영혼'-'
728x90
반응형
LIST