SpringBoot靜態資源訪問

1,靜態資源:訪問js,css,圖片    動靜分離(CDN緩存)css

傳統Web工程   屬於webapps裏面html

 

springboot裏面有要求:靜態資源存放在resources目錄下的static文件夾下web

 

2.整合Freemarker視圖層spring

.jsp###.html   .htm緩存

微靜態htmlspringboot

 

1.pom文件引入      app

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

 

2.在src/resources/  新建一個文件夾templates  並在下面新建一個*.ftl文件webapp

@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";
}
}jsp

 

這是個人第一個ftl
${name} ### ${age} ###${sex}spring-boot

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

相關文章
相關標籤/搜索