SpringBoot應用配置經常使用相關視圖解析器

SpringBoot的自動裝配裝配了視圖解析器了嗎?

咱們能夠看到SpringBoot自動裝配的WebMvcAutoConfiguration類中,裝配了如下關於ViewResolver(視圖解析器)的類。能夠看到SpringBoot已經自動裝配了InternalResourceViewResolver類,又是經過外部資源配置的方式來配置此視圖解析器this.mvcProperties.getView().getPrefix(),因此咱們能夠在application.properties文件配置此視圖解析器用於解析JSP。java

@Bean
        @ConditionalOnMissingBean
        public InternalResourceViewResolver defaultViewResolver() {
            InternalResourceViewResolver resolver = new InternalResourceViewResolver();
            resolver.setPrefix(this.mvcProperties.getView().getPrefix());
            resolver.setSuffix(this.mvcProperties.getView().getSuffix());
            return resolver;
        }

SpringBoot使用JSP

SpringBoot在自動裝配的時候默認就已經將JSP的視圖解析器InternalResourceViewResolver裝配。因此咱們只須要進行配置使用便可。在SpringBoot中使用JSP比較麻煩一點,或許是個人我的理解存在什麼誤區,若是有朋友知道更好的配置方法,請留言給我。web

第一步:建立自定義webapp目錄,以下所示spring

第二步:將此文件夾配置成項目的WEB模塊apache

第三步:導入JSP相關依賴tomcat

<dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-jasper</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
        </dependency>

第四步:在SpringBoot的屬性文件application.properties中配置JSP的路由springboot

spring.mvc.view.prefix=/
spring.mvc.view.suffix=.jsp

第五步:修改Maven的pom.xml文件打包方式改爲war(默認打包Jar,打包Jar包的方式使用Idea啓動是沒什麼問題,若是單獨運行Jar包就找不到JSP文件,若是改爲War包便可)mvc

<packaging>war</packaging>

SpringBoot中使用Thymeleaf

SpringBoot官方是推薦使用thymeleaf做爲優選的視圖解析器,因此SpringBoot對Thymeleaf的支持很是好,這裏僅僅演示SpringBoot如何選用Thymeleaf做用默認視圖解析器。app

第一步:導入Thymeleaf的依賴webapp

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>

第二步:建立存放Thymeleaf模板文件夾,在Resources目錄下建立templates目錄

這個文件夾的名字可不是我麼隨便命名的啊,是SpringBoot在自動裝配Thymeleaf視圖解析器的時候就已經預約義好了,咱們看一下它的定義源碼。

@ConfigurationProperties(prefix = "spring.thymeleaf")
public class ThymeleafProperties {

    private static final Charset DEFAULT_ENCODING = StandardCharsets.UTF_8;

    public static final String DEFAULT_PREFIX = "classpath:/templates/";

    public static final String DEFAULT_SUFFIX = ".html";
    }

SpringBoot中使用Freemark

第一步:導入Maven依賴

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-freemarker</artifactId>
        </dependency>

第二步:建立存放Freemark模板文件夾,在Resources目錄下建立templates目錄

@ConfigurationProperties(prefix = "spring.freemarker")
public class FreeMarkerProperties extends AbstractTemplateViewResolverProperties {

    public static final String DEFAULT_TEMPLATE_LOADER_PATH = "classpath:/templates/";

    public static final String DEFAULT_PREFIX = "";

    public static final String DEFAULT_SUFFIX = ".ftl";
    }

咱們能夠看到SpringBoot在自動裝配Freemarker視圖解析器默認是將模板文件放在classpath:/templates/路徑內,咱們一樣能夠在SpringBoot的配置文件中自行配置。

小提示:我在寫Freemark視圖解析器的時候並無將第一個JSP內部資源解析器給刪除掉,因此他們是並存的,因此咱們能夠知道SpringBoot在裝配他們的時候給予設定了優先級順序。從下圖能夠看到他們的優先級順序;Freemarker>Thymeleaf>InternalResourceViewResolver`

該教程所屬Java工程師之SpringBoot系列教程,本系列相關博文目錄 Java工程師之SpringBoot系列教程前言&目錄

相關文章
相關標籤/搜索