溫馨提示×

springboot中freemarker怎么做文本替換

小億
188
2024-05-24 10:32:17
欄目: 編程語言

在Spring Boot中使用Freemarker進(jìn)行文本替換,首先需要在項(xiàng)目中引入Freemarker依賴。在pom.xml中添加以下依賴:

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

然后在應(yīng)用程序中配置Freemarker模板的位置,可以在application.propertiesapplication.yml中添加如下配置:

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

接下來,在模板文件中使用Freemarker語法進(jìn)行文本替換。例如,創(chuàng)建一個(gè)名為index.ftl的Freemarker模板文件,內(nèi)容如下:

<!DOCTYPE html>
<html>
<head>
    <title>Welcome</title>
</head>
<body>
    <h1>Welcome ${username}!</h1>
</body>
</html>

在Spring Boot應(yīng)用程序中,可以通過ModelAndView對象將數(shù)據(jù)傳遞給Freemarker模板進(jìn)行渲染。示例代碼如下:

@Controller
public class IndexController {

    @RequestMapping("/")
    public ModelAndView index() {
        ModelAndView modelAndView = new ModelAndView("index");
        modelAndView.addObject("username", "John");
        return modelAndView;
    }
}

上面的示例中,username變量會(huì)被替換為John,最終返回渲染后的HTML頁面。通過這種方式,可以實(shí)現(xiàn)在Spring Boot中使用Freemarker進(jìn)行文本替換。

0