博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring MVC页面重定向实例
阅读量:6812 次
发布时间:2019-06-26

本文共 4177 字,大约阅读时间需要 13 分钟。

以下内容引用自:

例子:

pom.xml:

4.0.0
com.jsoft.testspring
testmvcredirect
war
0.0.1-SNAPSHOT
testmvcredirect Maven Webapp
http://maven.apache.org
junit
junit
3.8.1
test
javax.servlet
javax.servlet-api
3.1.0
provided
org.springframework
spring-core
4.1.4.RELEASE
org.springframework
spring-web
4.1.4.RELEASE
org.springframework
spring-webmvc
4.1.4.RELEASE
testmvcredirect
org.apache.tomcat.maven
tomcat7-maven-plugin
2.2
org.eclipse.jetty
jetty-maven-plugin
9.4.3.v20170317

web.xml:

Spring MVC Application
spring-mvc
org.springframework.web.servlet.DispatcherServlet
contextConfigLocation
/WEB-INF/springmvc-context.xml
1
spring-mvc
/

springmvc-context.xml:

/WEB-INF/jsp/
.jsp

WebController.java:

package com.jsoft.testspring.testmvcredirect;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 "finalPage";    }}

说明:主要是使用了redirect关键字。

index.jsp:

<%@ page language="java" contentType="text/html; charset=UTF-8"    pageEncoding="UTF-8"%><%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>    Spring Page Redirection

Spring Page Redirection

Click below button to redirect the result to new page

finalPage.jsp:

<%@ page language="java" contentType="text/html; charset=UTF-8"    pageEncoding="UTF-8"%>    Spring Page Redirection

Redirected Page

 

测试工程:

转载地址:http://ddzzl.baihongyu.com/

你可能感兴趣的文章
分布式事务键值数据库 TiKV 加入 CNCF 沙箱孵化器
查看>>
Vue - day1
查看>>
kvm.virsh常用命令篇
查看>>
[Hive]Hive使用指南四 客户端导入数据
查看>>
10.JUC线程高级-线程八锁
查看>>
Apache Flink轻量级异步快照机制源码分析
查看>>
PostgreSQL 11 preview - 分区表 增强 汇总
查看>>
MediaCodec在Android视频硬解码组件的应用
查看>>
用JAVA自己画一张二维码
查看>>
Flutter Engine线程管理与Dart Isolate机制
查看>>
美国泛达公司:下一代数据中心的光缆布线系统
查看>>
以太坊(ethereum)技术开发相关资料
查看>>
Pandas数据排序
查看>>
gulp常用插件
查看>>
2018 前端趋势:更一致,更简单
查看>>
SQL物化视图 自动更新 定时刷新
查看>>
express框架应用接入阿里云函数计算
查看>>
几行代码实现ofo首页小黄人眼睛加速感应转动
查看>>
317TABLE ACCESS BY INDEX ROWID BATCHED3
查看>>
MapReduce Shuffle原理 与 Spark Shuffle原理
查看>>