web-dev-qa-db-ja.com

HTTPステータス405-Spring Securityを使用するSpring MVCでは、リクエストメソッド「POST」はサポートされていません

ビューパーツとしてfreemarkerテンプレートを使用して、Spring MVCアプリケーションを作成しました。これでフォームを使用してモデルを追加しようとしました。また、私は春のセキュリティを使用しています

employee.ftl

<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>

employeeController.Java

@RequestMapping(value = "/addEmployee", method = RequestMethod.POST)
    public String addEmployee(@ModelAttribute("employee") Employee employee) {
        employeeService.add(employee);
        return "employee";
    }

web.xml

<?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>

Spring-security.xml

<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>

[送信]ボタンをクリックすると、エラー `

HTTPステータス405-要求メソッド「POST」はサポートされていません

`ftlとコントローラーの両方でPOSTメソッドを指定しました。それがなぜ起こるのでしょうか?

14
rohi

これが役立つかどうかはわかりませんが、同じ問題がありました。

CSRF保護でspringSecurityFilterChainを使用しています。 POSTリクエストでフォームを送信するときにトークンを送信する必要があります。次の入力をフォームに追加してみてください。

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

私が見た限りでは、言及されたソリューションは最新のSpringSecurityでは機能しませんでした。 hiddenでパススルーする代わりに、以下のようなアクションURLで送信することもできます。

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

私は解決策を見つけました。これは、春のセキュリティクロスサイトリクエストフォージェリ(CSRF)保護のためです。 URLをブロックします。そこで、フォーム内に追加のフィールドを追加しました。

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

今では正常に動作しています。

1
rohi

交換してみてください:

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のcontextConfigLocationから。

慣習では、コンテキストxmlファイルの名前は「[servlet-name] -context.xml」となります。[servlet-name]はDispatcherServletの名前です。

また、フォームアクションに「/」を追加してみてください。

action="/addEmployee"
0
Adriaan Koster

これは私のために働く:

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

別のソリューション(ただし、すべてのフォーム)

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