SpringBoot如何实现高效的项目开发?

2026-05-26 01:431阅读0评论SEO资讯
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计1174个文字,预计阅读时间需要5分钟。

SpringBoot如何实现高效的项目开发?

目录

1.前言

2.多种方式尝试

2.1 redirect和forward关键字(非Java关键字) 2.2 重写WebMvcConfigurer接口中的方法 2.3 引入thymeleaf

3.最终效果

1. 前言 原先的页面访问地址为:http://127.0.1

目录
  • 1、前言
  • 2、多种方式尝试
    • 2.1 redirect、forward关键字(不是 Java 关键字)
    • 2.2 重写 WebMvcConfigurer 接口中的方法
    • 2.3 引入 thymeleaf
  • 3、最终效果

    1、前言

      原先的页面访问地址为:127.0.0.1:8888/office/schdule/index/
    重构项目,SpringBoot 项目,前后分离,前端文件放置静态目录(static)下,访问地址:127.0.0.1:8888/office/schdule/index.html。可以看出,原先是请求接口进行转发到指定页面的,而现在是直接访问静态文件,为了能兼容原先访问地址,则需对请求进行转发处理。

    2、多种方式尝试

    2.1 redirect、forward关键字(不是 Java 关键字)

    /** * 跳转控制器 * @author pky */ @Controller public class JumpController extends BaseResultController { /** * 跳转主页 * @return 要转发的页面地址 */ @GetMapping("html/index") public String forwordIndexHtml() { return "forword:/schdule/index.html"; } /** * 跳转主页 * @return 要重定向的页面地址 */ @GetMapping("html/index") public String redirectIndexHtml() { return "redirect:/schdule/index.html"; } }

    注意:需要使用@Controller,不可使用@RestController
    @RestController相当于@Controller@ResponseBody合在一起的作用,如果使用@RestController注解Controller层的话,则返回的是return里面的内容,无法返回到指定的页面,配置的视图解析器InternalResourceViewResolver也就自然没有作用了。

      然而,上述代码报了Cannot resolve MVC View ‘forword:/schdule/index.html’无法解析视图的错误

    2.2 重写 WebMvcConfigurer 接口中的方法

      创建 WebConfig 类实现 WebMvcConfigurer 接口,重写 addViewControllers 方法。如下代码:

    import org.springframework.boot.SpringBootConfiguration; import org.springframework.web.servlet.config.annotation.*; /** * Web 配置类 * * @author pky */ @SpringBootConfiguration public class WebConfig implements WebMvcConfigurer { @Override public void addViewControllers(ViewControllerRegistry registry) { // 设置访问相对路径及其对应的 HTML 文件的相对路径(相对于静态目录) registry.addViewController("html/index").setViewName("schdule/index.html"); } }

      依然还是报了Cannot resolve MVC View ‘forword:/schdule/index.html’无法解析视图的错误

    2.3 引入 thymeleaf

      以上的错误是因为没有使用模板引擎,无法识别静态页面。

    pom.xml

    <!-- 模板引擎 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>

    applicaiton.properties

    server.servlet.context-path=/office/ server.port=10000 # 静态资源路径 spring.resources.static-locations=classpath:/static/, classpath:/templates/

      值得注意的是,SpringBoot 默认的静态目录是resources下的 static,引入thymeleaf模板引擎后,还是无法识别static下的文件,只能识别templates下的文件。因此applicaiton.properties需配置templates资源路径地址,如下图index.html路径:

    修改 Controller

      去掉forword redirect关键字,直接写需跳转的地址。

    SpringBoot如何实现高效的项目开发?

    /** * 跳转控制器 * @author pky */ @Controller public class JumpController extends BaseResultController { /** * 跳转主页(使用template模板引擎) * @return 要转发到指定页面的相对地址(相对于 templates) */ @GetMapping("html/index") public String forwordIndexHtml() { return "schdule/index.html"; } }

    另外,引入了引入thymeleaf模板引擎后,上述addViewControllers(ViewControllerRegistry registry)方法也能在 IDEA 中正常跳转到指定地址,但是运行时,却总是报找不到静态文件,无论怎么修改路径都不行。具体原因不明,因此不采用。

    3、最终效果

    127.0.0.1:8888/office/schdule/index/

    127.0.0.1:8888/office/schdule/index.html

    到此这篇关于SpringBoot 转发请求至指定页面的文章就介绍到这了,更多相关SpringBoot 转发请求至指定页面内容请搜索自由互联以前的文章或继续浏览下面的相关文章希望大家以后多多支持自由互联!

    本文共计1174个文字,预计阅读时间需要5分钟。

    SpringBoot如何实现高效的项目开发?

    目录

    1.前言

    2.多种方式尝试

    2.1 redirect和forward关键字(非Java关键字) 2.2 重写WebMvcConfigurer接口中的方法 2.3 引入thymeleaf

    3.最终效果

    1. 前言 原先的页面访问地址为:http://127.0.1

    目录
    • 1、前言
    • 2、多种方式尝试
      • 2.1 redirect、forward关键字(不是 Java 关键字)
      • 2.2 重写 WebMvcConfigurer 接口中的方法
      • 2.3 引入 thymeleaf
    • 3、最终效果

      1、前言

        原先的页面访问地址为:127.0.0.1:8888/office/schdule/index/
      重构项目,SpringBoot 项目,前后分离,前端文件放置静态目录(static)下,访问地址:127.0.0.1:8888/office/schdule/index.html。可以看出,原先是请求接口进行转发到指定页面的,而现在是直接访问静态文件,为了能兼容原先访问地址,则需对请求进行转发处理。

      2、多种方式尝试

      2.1 redirect、forward关键字(不是 Java 关键字)

      /** * 跳转控制器 * @author pky */ @Controller public class JumpController extends BaseResultController { /** * 跳转主页 * @return 要转发的页面地址 */ @GetMapping("html/index") public String forwordIndexHtml() { return "forword:/schdule/index.html"; } /** * 跳转主页 * @return 要重定向的页面地址 */ @GetMapping("html/index") public String redirectIndexHtml() { return "redirect:/schdule/index.html"; } }

      注意:需要使用@Controller,不可使用@RestController
      @RestController相当于@Controller@ResponseBody合在一起的作用,如果使用@RestController注解Controller层的话,则返回的是return里面的内容,无法返回到指定的页面,配置的视图解析器InternalResourceViewResolver也就自然没有作用了。

        然而,上述代码报了Cannot resolve MVC View ‘forword:/schdule/index.html’无法解析视图的错误

      2.2 重写 WebMvcConfigurer 接口中的方法

        创建 WebConfig 类实现 WebMvcConfigurer 接口,重写 addViewControllers 方法。如下代码:

      import org.springframework.boot.SpringBootConfiguration; import org.springframework.web.servlet.config.annotation.*; /** * Web 配置类 * * @author pky */ @SpringBootConfiguration public class WebConfig implements WebMvcConfigurer { @Override public void addViewControllers(ViewControllerRegistry registry) { // 设置访问相对路径及其对应的 HTML 文件的相对路径(相对于静态目录) registry.addViewController("html/index").setViewName("schdule/index.html"); } }

        依然还是报了Cannot resolve MVC View ‘forword:/schdule/index.html’无法解析视图的错误

      2.3 引入 thymeleaf

        以上的错误是因为没有使用模板引擎,无法识别静态页面。

      pom.xml

      <!-- 模板引擎 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>

      applicaiton.properties

      server.servlet.context-path=/office/ server.port=10000 # 静态资源路径 spring.resources.static-locations=classpath:/static/, classpath:/templates/

        值得注意的是,SpringBoot 默认的静态目录是resources下的 static,引入thymeleaf模板引擎后,还是无法识别static下的文件,只能识别templates下的文件。因此applicaiton.properties需配置templates资源路径地址,如下图index.html路径:

      修改 Controller

        去掉forword redirect关键字,直接写需跳转的地址。

      SpringBoot如何实现高效的项目开发?

      /** * 跳转控制器 * @author pky */ @Controller public class JumpController extends BaseResultController { /** * 跳转主页(使用template模板引擎) * @return 要转发到指定页面的相对地址(相对于 templates) */ @GetMapping("html/index") public String forwordIndexHtml() { return "schdule/index.html"; } }

      另外,引入了引入thymeleaf模板引擎后,上述addViewControllers(ViewControllerRegistry registry)方法也能在 IDEA 中正常跳转到指定地址,但是运行时,却总是报找不到静态文件,无论怎么修改路径都不行。具体原因不明,因此不采用。

      3、最终效果

      127.0.0.1:8888/office/schdule/index/

      127.0.0.1:8888/office/schdule/index.html

      到此这篇关于SpringBoot 转发请求至指定页面的文章就介绍到这了,更多相关SpringBoot 转发请求至指定页面内容请搜索自由互联以前的文章或继续浏览下面的相关文章希望大家以后多多支持自由互联!