运行基本的Spring MVC应用程序有哪些配置或xml文件?

时间:2012-02-15 10:54:48

标签: spring spring-mvc

我需要知道要放在我的Web-inf文件夹中的基本XML配置文件,比如web.XML,以及写视图解析器bean的位置。

如何注册控制器?

当我运行我的应用程序时,我收到错误“无法打开servlet上下文资源”。什么是servlet上下文资源,我在哪里提到它?

我的web.xml是:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

<servlet>
<servlet-name>springmvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
 </servlet>

 <servlet-mapping>
 <servlet-name>springmvc</servlet-name>
<url-pattern>*.html</url-pattern>
 </servlet-mapping>
<welcome-file-list>
<welcome-file>
 jsp/index.jsp
 </welcome-file>


</welcome-file-list>
</web-app>

我的springmvc是:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">

<bean name="/hello_world.html" class="springmvc.web.HelloWorldController"/>
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
<property name="prefix" value="/jsp/"/>
<property name="suffix" value=".jsp"/>
 </bean>
</beans>

我只有这两个xml文件。

我知道我也需要弹簧配置文件。我不知道我需要提供哪些细节。

1 个答案:

答案 0 :(得分:0)

如果您使用STS(Spring Tool Suite),那么您可以创建一个Spring模板项目。 (New Project / SpringSource Tool Suite / Spring Template Project / -Spring MVC Project)

这包含您需要启动的所有文件。