在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.properties
或application.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)行文本替換。