SpringBoot静态资源访问

Posted 言西早石头侠

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot静态资源访问相关的知识,希望对你有一定的参考价值。

1,静态资源:访问js,css,图片    动静分离(CDN缓存)

传统Web工程   属于webapps里面

 

springboot里面有要求:静态资源存放在resources目录下的static文件夹下

 

2.整合Freemarker视图层

.jsp###.html   .htm

微静态html

 

1.pom文件引入      

<!-- 引入freeMarker的依赖包 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-freemarker</artifactId>
        </dependency>

 

2.在src/resources/  新建一个文件夹templates  并在下面新建一个*.ftl文件

@Controller
public class FtlIndexController {

@RequestMapping("ftlIndex")
public String ftlIndex(Map<String ,Object> map) {
map.put("name", "谭磊");
map.put("age", "20");
map.put("sex", "0");
return "ftlIndex";
}
}

 

这是我的第一个ftl
${name} ### ${age} ###${sex}

<#if sex="0">
男生
<#else>
女生
</#if>

 
















以上是关于SpringBoot静态资源访问的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot目录文件结构和官方推荐的目录规范静态资源访问

springBoot怎样访问静态资源?+静态资源简介

springboot-静态资源访问

springboot-静态资源访问

SpringBoot - 实现静态资源的访问(附:修改过滤规则静态资源位置)

springboot静态资源访问