我正在学习Spring MVC,并且在运行Web应用程序时遇到了很大的麻烦。我的控制器不起作用,因此无法映射我的请求。这是我的错误:
HTTP状态404 –找不到
类型状态报告
描述原始服务器找不到目标资源的当前表示,或者不愿意透露该资源的存在。
当我在浏览器中键入时,会发生相同的错误:
http://localhost:8081/showForm
我的控制器:
@Controller
public class HelloWorldController {
@RequestMapping("/showForm")
public String showForm() {
return "helloworld-form";
}
@RequestMapping("/processForm")
public String processForm() {
return "helloworld";
}
}
dispatcher-servlet
<?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:mvc="http://www.springframework.org/schema/cache"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache.xsd">
<mvc:annotation-driven/>
<context:component-scan base-package="mvcapp"/>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="WEB-INF/view/"></property>
<property name="suffix" value=".jsp"></property>
</bean>
</beans>
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
<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/dispatcher-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>
答案 0 :(得分:0)
在您的 bean配置 dispatcher-servlet.xml
中,
尝试将 InternalResourceViewResolver bean的名为 prefix 的属性更正为以/
开头的相对路径:
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/view/"></property>
<property name="suffix" value=".jsp"></property>
</bean>
或写成:
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/WEB-INF/view/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>
请参见 mkYong (2010):Spring MVC InternalResourceViewResolver example
答案 1 :(得分:0)
当您访问http://localhost:8081/showForm时,是否可以输入方法,可以在返回“ helloworld-form”之前添加System.out.println(“ showForm);到位置提示,无视提示或jsp访问问题
答案 2 :(得分:0)
我扩展了tomcat的输出,从内容中添加了WEB-INF / classes / logging.properties:
org.apache.catalina.core.ContainerBase。[Catalina] .level = INFO
org.apache.catalina.core.ContainerBase。
[Catalina] .handlers = java.util.logging.ConsoleHandler
我发现了这个例外:
2019年12月3日17:25:41.190 INFO [RMI TCP连接(3)-127.0.0.1] org.apache.catalina.core.ApplicationContext.log标记servlet [调度程序]不可用03-Dec-2019 17:25:41.191严重[RMI TCP 连接(3)-127.0.0.1] org.apache.catalina.core.StandardContext.loadOnStartup Servlet Web应用程序中的[dispatcher] []引发load()异常 java.lang.ClassNotFoundException: org.springframework.web.servlet.DispatcherServlet
(...)
因此,问题出在缺少调度程序类和其他库。
我解决了这个问题,将maven的所有spring libs添加到libs目录中。 https://stackoverflow.com/a/24586000/12296902 非常感谢您的回复