我正在尝试使用Spring MVC。我的问题是控制器中没有请求映射在起作用,只有主页链接:“ /”在起作用。
@Controller
public class HelloWoldController {
@RequestMapping("/")
public String showPage() {
return "main";
}
@RequestMapping("/showForm")
public String showForm() {
return "form";
}
}
我的web.xml文件是:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
id="WebApp_ID" version="3.1">
<display-name>springMVC</display-name>
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring-mvc-demo-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
,而我的spring-mvc-demo-servlet.xml是:
<?xml version="1.0" encoding="ISO-8859-1"?>
<beans
xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/beans">
<context:component-scan
base-package="com.kaygi22.springmvc" />
<mvc:annotation-driven />
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property value="/WEB-INF/view/" name="prefix" />
<property value=".jsp" name="suffix" />
</bean>
每当我尝试进入showForm的链接时,都会收到以下消息:
2019年5月9日下午4:55:42 org.springframework.web.servlet.DispatcherServlet noHandlerFound 警告:GET / springMVC / showForm
没有映射答案 0 :(得分:1)
我遇到了同样的问题,我做了以下工作: 清理您的项目: 在eclipse中,转到Project-> clean 然后右键单击项目并刷新它。
答案 1 :(得分:0)
尝试通过添加网址和方法类型的值来将方法更改为以下。
@RequestMapping(value="/showForm", method=RequestMethod.GET)
答案 2 :(得分:0)
我不知道它是如何工作的,但是我将我的项目切换到了maven war项目,而不是Dynamic Web app,问题得以解决。如果有人可以提供任何解释?