栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

2.10SpringBoot之多视图存在

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

2.10SpringBoot之多视图存在

1.freemarker+thymeleaf

直接添加依赖就行

2.freemarker+jsp

直接添加依赖就行

3.thymeleaf+jsp

添加依赖

   
            org.springframework.boot
            spring-boot-starter-thymeleaf
        
        
            org.springframework.boot
            spring-boot-starter-web
        
        
            org.apache.tomcat.embed
            tomcat-embed-jasper
            provided
        
        
        
            javax.servlet
            jstl
        

WebMvcConfig.java

 

 

@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
    @Override
    public void configureViewResolvers(ViewResolverRegistry registry) {
        registry.jsp("/WEB-INF/jsp/",".jsp").viewClass(HandleInternalResourceVivwExists.class);
        registry.order(1);
    }
}

 HandleInternalResourceVivwExists

public class HandleInternalResourceVivwExists extends InternalResourceView {
    @Override
    public boolean checkResource(Locale locale) throws Exception {
        File file = new File(getServletContext().getRealPath("/")+getUrl());
        return file.exists();
    }
}

 

helloController

package com.example.thyjsp;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;


@Controller
public class helloController {


    @RequestMapping("/01")
    public String hello2(){
        return "01";
    }

    @RequestMapping("/02")
    public String hello3(){
        return "02";
    }


}

4.freemarker+thymeleaf+jsp

同三

01.jsp

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


    Title


${"jsp"}



02.html




    
    Title





03.ftlh




    
    Title


${"ftlh"}

 

 

 

 

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/851546.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号