Spring 页面重定向示例

来源:互联网 发布:淘宝上如何收藏店铺 编辑:程序博客网 时间:2024/05/20 18:43

下面的例子展示了如何编写一个简单的基于Web的应用程序,它利用重定向到一个http请求传送到另一个另一页。要开始使用它,我们使用Eclipse IDE,并按照以下步骤使用Spring Web框架开发动态表单的Web应用程序:

步骤描述1Create a Dynamic Web Project with a name HelloWeb and create a packagecom.yiibai under the src folder in the created project.2Drag and drop below mentioned Spring and other libraries into the folder WebContent/WEB-INF/lib.3Create a Java class WebController under the com.yiibai package.4Create Spring configuration files Web.xml and HelloWeb-servlet.xml under theWebContent/WEB-INF folder.5Create a sub-folder with a name jsp under the WebContent/WEB-INF folder. Create view filesindex.jsp and final.jsp under this sub-folder.6The 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;@Controllerpublic class WebController {   @RequestMapping(value = "/index", method = RequestMethod.GET)   public String index() {   return "index";   }      @RequestMapping(value = "/redirect", method = RequestMethod.GET)   public String redirect() {           return "redirect:finalPage";   }      @RequestMapping(value = "/finalPage", method = RequestMethod.GET)   public String finalPage() {           return "final";   }}

以下是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:context="http://www.springframework.org/schema/context"   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-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></beans>

以下是Spring的index.jsp文件的内容。这将是一个登陆页面,此页面会发送一个请求来访问,将这个请求重定向到另一个服务方法,最后一个final.jsp页面将显示重定向服务方法。

<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%><html><head>    <title>Spring Page Redirection</title></head><body><h2>Spring Page Redirection</h2><p>Click below button to redirect the result to new page</p><form:form method="GET" action="/HelloWeb/redirect"><table>    <tr>    <td>    <input type="submit" value="Redirect Page"/>    </td>    </tr></table>  </form:form></body></html>

以下是Spring视图文件final.jsp的内容。这是最后的重定向页面。

<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%><html><head>    <title>Spring Page Redirection</title></head><body><h2>Redirected 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,应该看到下面的结果:

Spring Redirect Form

现在单击“Redirect Page”按钮来提交表单,并获得最终的重定向页面。你应该看到下面的结果:

Spring Redirect Form Result

文献摘录于 http://www.yiibai.com/ , 如有问题,请联系 QQ:1519891098 , 我很愿意和您沟通!

0 0
原创粉丝点击