首页 > 编程语言 > 详细

SpringBoot(三)

时间:2021-02-13 08:50:36      阅读:22      评论:0      收藏:0      [点我收藏+]

SpringBoot(三)

静态资源导入

  • webjars:前端资源的jar包形式,支持以Maven的方式引入前端资源

    • localhost:8080/webjars/
  • 静态资源位置:(classpath为resources目录)

    • classpath:/META-INF/resources/
    • classpath:/resources/
    • classpath:/static/
    • classpath:/public/
  • 自定义:spring.mvc.static-path-pattern

    • 自定义后默认路径失效

首页

  • 静态资源目录下的index.html
  • 或者使用模板引擎,通过controller跳转

Thymeleaf模板引擎

  • 导入依赖
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
  • classpath:/templates/目录下的HTML文件自动导入,在Controller中return文件名即可

  • 导入命名空间

<html lang="en" xmlns:th="http://www.thymeleaf.org">
  • 在Controller中使用Model的setAttribute方法设置属性
  • th:xxx指令中使用${}取值

配置SpringMVC

  • 编写配置类,@Configuration注解,实现WebMvcConfigurer接口

  • 编写对应组件,交给Spring Boot自动装配,或重写接口中的方法

  • 自定义视图解析器:

@Bean
public ViewResolver myViewResolver(){
    return new MyViewResolver();
}

public static class MyViewResolver implements ViewResolver {
    @Override
    public View resolveViewName(String s, Locale locale) throws Exception {
        return null;
    }
}
  • 视图跳转:
@Override
public void addViewControllers(ViewControllerRegistry registry) {
    registry.addViewController("/test1").setViewName("test");
}

SpringBoot(三)

原文:https://www.cnblogs.com/xiafrog/p/14398972.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!