복붙노트

[SPRING] HTTP 상태 405 - 요청 메소드 'POST'는 Spring Security가있는 Spring MVC에서 지원되지 않습니다.

SPRING

HTTP 상태 405 - 요청 메소드 'POST'는 Spring Security가있는 Spring MVC에서 지원되지 않습니다.

뷰 파트로 freemarker 템플릿을 사용하여 봄 mvc 응용 프로그램을 만들었습니다. 이것은 폼을 사용하여 모델을 추가하려고 시도했습니다. 스프링 보안도 사용하고 있습니다. 여기에 코드가있다.

<fieldset>
    <legend>Add Employee</legend>
  <form name="employee" action="addEmployee" method="post">
    Firstname: <input type="text" name="name" /> <br/>
    Employee Code: <input type="text" name="employeeCode" />   <br/>
    <input type="submit" value="   Save   " />
  </form>
@RequestMapping(value = "/addEmployee", method = RequestMethod.POST)
    public String addEmployee(@ModelAttribute("employee") Employee employee) {
        employeeService.add(employee);
        return "employee";
    }
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

<!-- Spring MVC -->
    <servlet>
        <servlet-name>appServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>appServlet</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>
            /WEB-INF/spring/appServlet/servlet-context.xml,
            /WEB-INF/spring/springsecurity-servlet.xml
        </param-value>
    </context-param>

    <!-- Spring Security -->
    <filter>
        <filter-name>springSecurityFilterChain</filter-name>
        <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
    </filter>

    <filter-mapping>
        <filter-name>springSecurityFilterChain</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>


</web-app>
<beans:beans xmlns="http://www.springframework.org/schema/security"
    xmlns:beans="http://www.springframework.org/schema/beans" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/security
    http://www.springframework.org/schema/security/spring-security-3.2.xsd">

    <http security="none" pattern="/resources/**"/>
    <!-- enable use-expressions -->
    <http auto-config="true" use-expressions="true">
        <intercept-url pattern="/login" access="isAnonymous()"/>
        <intercept-url pattern="/**" access="hasRole('ROLE_ADMIN')" />

        <!-- access denied page -->
        <access-denied-handler error-page="/403" />
        <form-login 
            login-page="/login" 
            default-target-url="/"
            authentication-failure-url="/login?error" 
            username-parameter="username"
            password-parameter="password" />
        <logout logout-success-url="/login?logout" />
        <!-- enable csrf protection -->
        <csrf />
    </http>

    <authentication-manager>
        <authentication-provider user-service-ref="userDetailsService" >
            <password-encoder hash="bcrypt" />    
        </authentication-provider>
    </authentication-manager>

</beans:beans>

제출 버튼을 클릭하면 에러`

` ftl과 컨트롤러 모두에서 POST 메서드를 제공했습니다. 그럼 왜 이런 일이 일어 났을까요?

해결법

  1. ==============================

    1.나는 이것이 도움이되는지 확실하지 않지만 같은 문제가있다.

    나는 이것이 도움이되는지 확실하지 않지만 같은 문제가있다.

    CSRF 보호 기능이있는 springSecurityFilterChain을 사용하고 있습니다. 즉, POST 요청을 통해 양식을 보낼 때 토큰을 보내야 함을 의미합니다. 양식에 다음 입력을 추가하십시오.

    <input type="hidden"
    name="${_csrf.parameterName}"
    value="${_csrf.token}"/>
    
  2. ==============================

    2.지금까지 언급 한 솔루션은 최신 SpringSecurity에서는 작동하지 않았습니다. 숨겨진 상태로 통과하는 대신 다음과 같은 작업 URL을 통해 보낼 수도 있습니다.

    지금까지 언급 한 솔루션은 최신 SpringSecurity에서는 작동하지 않았습니다. 숨겨진 상태로 통과하는 대신 다음과 같은 작업 URL을 통해 보낼 수도 있습니다.

    <form method="post" action="doUpload?${_csrf.parameterName}=${_csrf.token}" enctype="multipart/form-data">
    
  3. ==============================

    3.해결책을 찾았습니다. 이는 스프링 보안 Cross Site Request Forgery (CSRF) 보호 때문입니다. 그것은 URL을 차단합니다. 그래서 폼 안에 여분의 필드를 추가했습니다.

    해결책을 찾았습니다. 이는 스프링 보안 Cross Site Request Forgery (CSRF) 보호 때문입니다. 그것은 URL을 차단합니다. 그래서 폼 안에 여분의 필드를 추가했습니다.

    <input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/>
    

    이제 제대로 작동하고 있습니다.

  4. ==============================

    4.교체를 시도하십시오 :

    교체를 시도하십시오 :

    action="addEmployee"
    

    와:

    action="${pageContext.request.contextPath}/addEmployee"
    

    Spring 3.2를 사용하지 않는 한

    XML을 본 후에 편집 :

    servlet-context.xml을 WEB-INF 디렉토리로 이동하고 'appServlet-context.xml'로 이름을 변경하십시오. 그런 다음 줄을 제거하십시오.

    /WEB-INF/spring/appServlet/servlet-context.xml,
    

    web.xml의 contextConfiguration에서.

    컨벤션은 컨텍스트 xml 파일의 이름이 '[servlet-name] -context.xml'인데, 여기서 [servlet-name]은 DispatcherServlet의 이름입니다.

    또한 폼 액션에 '/'를 추가하여 다음과 같이하십시오.

    action="/addEmployee"
    
  5. ==============================

    5.이 작품은 나를 위해 :

    이 작품은 나를 위해 :

    .and().csrf().disable();
    

    다른 해결책 (그러나 모든 형태)

    <input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/>
    
  6. from https://stackoverflow.com/questions/27269383/http-status-405-request-method-post-not-supported-in-spring-mvc-with-spring by cc-by-sa and MIT license