我正在尝试在index.jsp文件中创建一个表单
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
<title>INDEX</title>
<h2>Enter your query </h2>
<form:form method="post" action="addComplaint.html">
<table>
<tbody><tr>
<td><form:label path="query">Query</form:label></td>
<td><form:input path="query"></form:input></td>
</tr>
<tr>
<td colspan="2">
<input type="submit" value="Submit">
</td>
</tr>
</tbody></table>
这是我的web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>Spring3MVC</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>*.html</url-pattern>
</servlet-mapping>
和我的spring-servlet.xml
<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<context:component-scan base-package="test"/>
<bean id="viewResolver" class="org.springframework.web.servlet.view.UrlBasedViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp"/>
</bean>
我对spring框架相当新。我面临的问题是每当我在jsp中添加弹簧形式时我都会收到此错误。
HTTP Status 500 - java.lang.IllegalStateException: No WebApplicationContext found: no ContextLoaderListener registered?
如果我没有弹簧形式,则没有错误。但是当有弹簧形式时,我收到此错误。 我有这样的控制器类。
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
@Controller
public class BotController {
@RequestMapping(value="/addComplaint",method=RequestMethod.POST)
public ModelAndView process()
{
ModelAndView mav=new ModelAndView("index","key","value");
return mav;
}
}
答案 0 :(得分:3)
在您的情况下,@ RequestMapping应该具有.html扩展名。
servlet调度程序url映射你就像这样,
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>*.html</url-pattern>
</servlet-mapping>
然后RequestMapping应该有.html扩展名。
@RequestMapping(value="/addComplaint.html",method=RequestMethod.POST)
public ModelAndView process() { }
确保spring-servlet.xml中的Controller类包名称
<context:component-scan base-package="test"/>
答案 1 :(得分:2)
使用匹配的close标记更正JSP并为表单添加commandName属性。
“请确保您的index.jsp应位于WEB-INF / jsp文件夹中”
答案 2 :(得分:2)
添加:
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
上下文文件必须是:[DispatcherServletName] -context.xml,Spring配置为首先查找该文件。
编辑:
Spring实现了控制反转的概念,它是一个管理声明对象的创建,生命周期和依赖关系的容器。
可以通过 application-context.xml 或部分通过spring注释声明这些对象。
mvc概念的Spring文档
http://docs.spring.io/spring/docs/current/spring-framework-reference/html/mvc.html
答案 3 :(得分:1)
请添加:
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
到web.xml
。
修改强> 尝试替换它:
<bean id="viewResolver" class="org.springframework.web.servlet.view.UrlBasedViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp"/>
</bean>
要:
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>