Spring 静态网页范例
下面的例子展示了如何使用Spring MVC框架,它可以访问静态网页与动态网页与<mvc:resources>标记的帮助下写了一个简单的基于Web的应用程序。要开始使用它,我们使用Eclipse IDE,并按照以下步骤使用Spring Web框架开发动态表单的Web应用程序:
步骤 | 描述 |
---|---|
1 | Create a Dynamic Web Project with a name HelloWeb and create a packagecom.yiibai under the src folder in the created project. |
2 | Drag and drop below mentioned Spring and other libraries into the folder WebContent/WEB-INF/lib. |
3 | Create a Java class WebController under the com.yiibai package. |
4 | Create Spring configuration files Web.xml and HelloWeb-servlet.xml under theWebContent/WEB-INF folder. |
5 | Create a sub-folder with a name jsp under the WebContent/WEB-INF folder. Create a view fileindex.jsp under this sub-folder. |
6 | Create a sub-folder with a name pages under the WebContent/WEB-INF folder. Create a static file final.html under this sub-folder. |
7 | The final step is to create the content of all the source and configuration files and export the application as explained below. |
这里是WebController.java文件的内容:
package com.yiibai; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; @Controller public class WebController { @RequestMapping(value = "/index", method = RequestMethod.GET) public String index() { return "index"; } @RequestMapping(value = "/staticPage", method = RequestMethod.GET) public String redirect() { return "redirect:/pages/final.html"; } }
以下是Spring Web配置文件web.xml 的内容
<web-app id="WebApp_ID" 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"> <display-name>Spring Page Redirection</display-name> <servlet> <servlet-name>HelloWeb</servlet-name> <servlet-class> org.springframework.web.servlet.DispatcherServlet </servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>HelloWeb</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app>
下面是另一个Spring Web配置文件的HelloWeb-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:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> <context:component-scan base-package="com.yiibai" /> <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/jsp/" /> <property name="suffix" value=".jsp" /> </bean> <mvc:resources mapping="/pages/**" location="/WEB-INF/pages/" /> <mvc:annotation-driven/> </beans>
这里<mvc:resources..../>标签被用来映射静态页面。映射属性必须是一个Ant模式,指定URL的HTTP请求的模式。位置属性必须指定具有静态页面,包括图片,样式表,JavaScript和其他静态内容的一个或多个有效的资源目录位置。多个资源位置可以使用逗号分隔的值的列表来指定。
以下是Spring视图文件WEB-INF/jsp/index.jsp的内容。这将是一个登陆页面,此页面会发送一个请求来访问staticPage服务方法,将这个请求重定向到WEB-INF/pages文件夹中提供一个静态页面。
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%> <html> <head> <title>Spring Landing Page</title> </head> <body> <h2>Spring Landing Pag</h2> <p>Click below button to get a simple HTML page</p> <form:form method="GET" action="/HelloWeb/staticPage"> <table> <tr> <td> <input type="submit" value="Get HTML Page"/> </td> </tr> </table> </form:form> </body> </html>
以下是Spring视图文件WEB-INF/pages/final.html 的内容。
<html> <head> <title>Spring Static Page</title> </head> <body> <h2>A simple HTML page</h2> </body> </html>
最后,下面是Spring和其他库包含在您的Web应用程序的列表。你只需将这些文件拖放它们到 WebContent/ WEB-INF/ lib文件夹中。
-
commons-logging-x.y.z.jar
-
org.springframework.asm-x.y.z.jar
-
org.springframework.beans-x.y.z.jar
-
org.springframework.context-x.y.z.jar
-
org.springframework.core-x.y.z.jar
-
org.springframework.expression-x.y.z.jar
-
org.springframework.web.servlet-x.y.z.jar
-
org.springframework.web-x.y.z.jar
-
spring-web.jar
创建源代码和配置文件完成后,导出您的应用程序。右键单击应用程序和使用Export> WAR文件选项并保存HelloWeb.war文件到Tomcat 的webapps文件夹中。
现在启动Tomcat服务器,并确保您能够访问来自的webapps文件夹,使用标准的浏览器。现在尝试访问该URL http://localhost:8080/HelloWeb/index。如果一切顺利,你应该看到以下结果:
点击“Get HTML Page”按钮来访问staticPage服务方法提到一个静态页面。如果一切顺利应该看到以下结果: