<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-freemarker</artifactId> </dependency>
src/
+- main/
+- java/
| +- com
| +- controller/
| | +- IndexController.class
| +- Application.class
+- resources/
+- templates/
+- index.ftlh
@SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } }
@Controller public class IndexController { @GetMapping("/index") public String index(Model model) { model.addAttribute("name", "Alice"); return "index"; } }
注意@ResponseBody注解不能和freemarker一起使用,所以此处不能标注@RestController注解。
<!DOCTYPE html> <html> <head> <title>test</title> </head> <body> hello ${name}! </body> </html>
运行Application类里的main方法。
然后访问localhost:8080/index,结果展示为:
hello Alice!
原文:https://www.cnblogs.com/stronger-brother/p/12124784.html