SpringBoot学习-支持thymeleaf模板引擎

Springboot默认是不支持JSP的,默认使用thymeleaf模板引擎。配置过程比较简单,引入jar支持就行

<dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
application.properties文件配置一些信息(非必须)

#thymelea模板配置
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.cache=false
spring.thymeleaf.suffix=.html
spring.thymeleaf.mode=HTML5
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.content-type=text/html
基本上就可以了,现在写个controller测试一下

@Controller
public class Test2Controller {

    @RequestMapping("to")
    public String to(){
        return "hello";
    }

    @RequestMapping("test")
    public String test(){
        return "test";
    }

}
注意一点,controller的注解是@Controller,而不是@RestController,区别在项目搭建的时候说过


在templates目录下新建几个页面,SpringBoot有个默认首页的设置,可以把index.html放在static静态资源目录下,就可以直接访问了

注意:HTML中引用Js和CSS的文件需要也放在static目录下才能被正确访问

测试结果:


有一个小问题:

IDEA创建的HTML文件默认的meta标签内是没有收尾的,会引起报错,我们加上收尾的“/”就行.



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值