FreeMarker一个模板引擎 即 FreeMarkergithub https://github.com/apache/fre…网址 https://freemarker.apache.org/maven安装访问网址 https://search.maven.org/arti...<dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> <version>2.3.28</version></dependency>编写模板<!DOCTYPE html><html lang=“zh_CN”><head></head><body> hello world ${name}</body></html>编写配置文件 <result name=“success” type=“freemarker”> <param name=“location”>/hello.fm</param> </result>