springboot整合freemarker接口怎么写
时间: 2023-10-20 07:24:55 浏览: 53
1. 首先,在pom.xml中添加freemarker依赖:
```
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.31</version>
</dependency>
```
2. 在Spring Boot的配置类中添加freemarker的配置:
```
@Configuration
public class FreemarkerConfig {
@Bean
public FreeMarkerConfigurer freeMarkerConfigurer() {
FreeMarkerConfigurer configurer = new FreeMarkerConfigurer();
configurer.setTemplateLoaderPath("classpath:/templates/");
configurer.setDefaultEncoding("UTF-8");
return configurer;
}
}
```
3. 创建Controller类,添加@RequestMapping注解,使用ModelAndView返回freemarker模板名称。
```
@Controller
public class FreemarkerController {
@RequestMapping("/hello")
public ModelAndView hello() {
ModelAndView mav = new ModelAndView();
mav.setViewName("hello");
mav.addObject("name", "world");
return mav;
}
}
```
4. 在resources/templates目录下创建hello.ftl模板文件,使用${}语法输出数据。
```
<!DOCTYPE html>
<html>
<head>
<title>Hello</title>
</head>
<body>
<h1>Hello, ${name}!</h1>
</body>
</html>
```
5. 启动Spring Boot应用程序,并访问http://localhost:8080/hello,即可看到输出结果。
阅读全文