spring boot使用thymeleaf和freemark和jsp

Spring Boot可以同时使用Thymeleaf、FreeMarker和JSP模板引擎。

首先,你需要在pom.xml中添加所需的依赖,例如:

<!-- Thymeleaf -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

<!-- FreeMarker -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>

<!-- JSP -->
<dependency>
    <groupId>org.apache.tomcat.embed</groupId>
    <artifactId>tomcat-embed-jasper</artifactId>
    <scope>provided</scope>
</dependency>

然后,你需要在application.propertiesapplication.yml文件中进行配置,以指定每个模板引擎的模板存储路径和后缀名。

例如,配置Thymeleaf:

spring.thymeleaf.prefix=classpath:/templates/thymeleaf/
spring.thymeleaf.suffix=.html

配置FreeMarker:

spring.freemarker.template-loader-path=classpath:/templates/freemark/
spring.freemarker.suffix=.ftl

配置JSP:

spring.mvc.view.prefix=/WEB-INF/jsp/
spring.mvc.view.suffix=.jsp

最后,在控制器类中使用所需的模板引擎注解来指定视图名称和模型属性,例如:

@Controller
public class HomeController {
    
    @GetMapping("/thymeleaf")
    public String getThymeleafModel(Model model) {
        model.addAttribute("message", "Hello from Thymeleaf!");
        return "thymeleaf-template"; // Thymeleaf视图名称
    }
    
    @GetMapping("/freemarker")
    public String getFreeMarkerModel(Model model) {
        model.addAttribute("message", "Hello from FreeMarker!");
        return "freemarker-template"; // FreeMarker视图名称
    }
    
    @GetMapping("/jsp")
    public String getJSPModel(Model model) {
        model.addAttribute("message", "Hello from JSP!");
        return "jsp-template"; // JSP视图名称
    }
}

以上就是如何在Spring Boot中同时使用Thymeleaf、FreeMarker和JSP模板引擎的步骤。当然,你需要根据具体情况进行相应的配置和调整。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

愚公搬程序

你的鼓励将是我们最大的动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值