springboot中的static目录和templates目录的区别

SpringBoot里面没有我们之前常规web开发的WebContent(WebApp),它只有src目录

在src/main/resources下面有两个文件夹,static和templates springboot默认 static中放静态页面,而templates中放动态页面。

springboot访问静态资源,默认有两个默认目录,

一个是  classpath/static 目录 (src/mian/resource)

一个是 ServletContext 根目录下( src/main/webapp )

classpath 即WEB-INF下面的classes目录 ,在springboot项目中可能就是src/main/resource 目录。

我们可以修改访问路径,在 properties文件里面设置  spring.resources.static-locations 就ok了

spring.resources.static-locations 的默认值是:

classpath:/META-INF/resources/,

classpath:/resources/,

classpath:/static/,

classpath:/public/

静态页面:

这里我们直接在static放一个hello.html,然后直接输入http://localhost:8080/hello.html便能成功访问

(也可以新建一个public文件夹,也可以放静态文件)

也可以通过controller跳转:

 

@RequestMapping("/hello")
public String sayHello() {
    return "hello.html";
}

然后输入http://localhost:8080/hello 就可以成功访问

 

动态页面:

动态页面需要先请求服务器,访问后台应用程序,然后再转向到页面,比如访问JSP。

spring boot建议不要使用JSP,默认使用Thymeleaf来做动态页面。

使用Thymeleaf,需要在pom中添加Thymeleaf组件 org.springframework.boot spring-boot-starter-thymeleaf

在添加pom前,先在tempates文件夹中也新建一个hello.html但内容不同,然后先试一下直接访问该页面。输入http://localhost:8080/hello.html:

结果访问的是静态文件夹里面的那个hello.html

然后我们现在再试一下用controller:输入http://localhost:8080/hello

就无法访问到hello.html了。。。这是因为:

通过controller返回的默认是跳转到/static/index.html,当在pom.xml中引入了thymeleaf组件,动态跳转会覆盖默认的静态跳转,默认就会跳转到/templates/index.html

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值