我在使用Spring MVC项目为我的localhost提供视图时遇到了一些麻烦。我使用New - >在Spring Tool Suite中创建了一个项目。春季项目 - > Spring MVC Project选项。我根本没有修改过这段代码,因为我确信这应该按原样运行(但显然不是这样)。
这是我的项目结构和HomeController.java
这在理论上应该在我转到localhost时调出home.jsp
,而是调出基本的Pivotal服务器页面:
在我的HomeController.java
文件中,如果我将@RequestMapping(value)
更改为“/ testing”,则会收到404错误:
最后,这是我的ServletContext.xml
(其中包含Spring MVC项目模板附带的ViewResolver):
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
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">
<annotation-driven />
<resources mapping="/resources/**" location="/resources/" />
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>
<context:component-scan base-package="pear.pear.pear" />
</beans:beans>
我的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">
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/root-context.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
如何解决此问题?我究竟做错了什么?另外,在旁注中,我注意到在许多其他Spring教程中他们使用Application.java
驱动程序类 - 这是必要的吗?
非常感谢。
答案 0 :(得分:0)
你的应用可能没有在Tomcat(/)的根URL上运行。默认值与项目名称相同,例如http://localhost:8080/hello/testing
。
答案 1 :(得分:0)
尝试 - 1:更改项目中定义的上下文根 - &gt;属性 - &gt;将Web项目设置更改为&#34; /&#34;并重新启动服务器(这不起作用)
尝试 - 2:找到vfabric服务器使用的server.xml并更改值&#34; /&#34;为您的文档库和重新启动服务器中提琴它工作!
<强>截图强>
使用STS创建spring MVC项目很有趣这个工具会自动分配您输入的包结构的最后几个字符,同时创建toplevelpackage作为Web应用程序的上下文路径,在您的情况下,如果您使用 http://localhost:8080/pear
访问网络项目,您就可以加载主页。