服务器之家

服务器之家 > 正文

Spring boot 跳转到jsp页面的实现方法

时间:2020-09-13 12:17     来源/作者:yanweihpu

本人正在学习Spring boot,搜索了很多关于Spring boot 跳转jsp页面的实现方法介绍,下面我来记录一下,有需要了解的朋友可参考。希望此文章对各位有所帮助。

@Controller注解

1、application.properties文件中配置

?
1
2
3
4
# 配置jsp文件的位置,默认位置为:src/main/webapp
spring.mvc.view.prefix=/pages/
# 配置jsp文件的后缀
spring.mvc.view.suffix=.jsp

2、Controller文件中配置

?
1
2
3
4
5
6
7
8
9
10
11
12
13
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
 
@Controller
public class UserController {
 
  @RequestMapping(value = "/index",method = RequestMethod.GET)
  public String toIndex(){
    return "index";
  }
}

3、启动项目App.Java中的【main】方法启动

4. 访问url,访问到jsp页面:http://localhost:8080/index

@RestController注解

1、application.properties文件中配置

?
1
2
3
4
# 配置jsp文件的位置,默认位置为:src/main/webapp
spring.mvc.view.prefix=/pages/
# 配置jsp文件的后缀
spring.mvc.view.suffix=.jsp

2、RestController文件中配置

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.RestController;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
 
@RestController
public class UserController {
 
  @RequestMapping(value = "/index",method = RequestMethod.GET)
  public String toIndex(){
    ModelAndView mv = new ModelAndView("index");    
 return mv; 
  }
}

3、启动项目App.java中的【main】方法启动

4. 访问url,访问到jsp页面:http://localhost:8080/index

注意:application.properties中spring.mvc.view.prefix和spring.mvc.view.prefix属性,在spring-boot 老版本中和新版本中不一样:
老版本中用:

?
1
2
spring.view.prefix=/pages/
spring.view.suffix=.jsp

新版本中用:

?
1
2
spring.mvc.view.prefix=/pages/
spring.mvc.view.suffix=.jsp

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://blog.csdn.net/yanweihpu/article/details/53927892

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
电视剧《琉璃》全集在线观看 琉璃美人煞1-59集免费观看地址
电视剧《琉璃》全集在线观看 琉璃美人煞1-59集免费观看地址 2020-08-12
最新idea2020注册码永久激活(激活到2100年)
最新idea2020注册码永久激活(激活到2100年) 2020-07-29
返回顶部