Extjs と spring mvc でデモ プロジェクトを開発しています。ユーザーが詳細を入力すると、結果ページにユーザーの詳細が表示されます。しかし、action:'/HelloWeb/addStudent.htm' を使用してリクエストを送信すると、405 -リクエスト メソッド 'POST' はサポートされていません。URL を使用すると、'/HelloWeb/addStudent.htm' と表示され、404 要求されたリソースが利用できません。
この問題を解決する方法
これはextjsコードを持つ私のindex.jspです
<script type="text/javascript">
Ext.onReady(function(){
Ext.QuickTips.init();
var login = new Ext.FormPanel({
items:[{
fieldLabel:'Name',
name:'Name',
allowBlank:false
},{
fieldLabel:'age',
name:'age',
allowBlank:false
},{
fieldLabel:'id',
name:'id',
allowBlank:false
}],
buttons:[{
text:'Submit',
formBind: true,
handler:function(){
login.getForm().submit({
//url: '/HelloWeb/addStudent.htm' ,
action:'/HelloWeb/addStudent.htm',
method:'POST',
enctype: 'multipart/form-data',
});
}
}]
});
これは私のコントローラーです
@RequestMapping(value = "/addStudent.htm", method = RequestMethod.POST)
public String addStudent(@ModelAttribute("SpringWeb")Student student,
ModelMap model) {
model.addAttribute("name", student.getName());
model.addAttribute("age", student.getAge());
model.addAttribute("id", student.getId());
return "result";
}
これは私の Servlet.xml
<context:component-scan base-package="nil" />
これは私の web.xml
<web-app version="3.0" 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_3_0.xsd">
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>HelloWeb</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>HelloWeb</servlet-name>
<url-pattern>*.htm</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>redirect.jsp</welcome-file>
</welcome-file-list>
</web-app>