public class ServerGenerator {
static String toServicePath = "server/src/main/java/com/course/server/service/";
public static void main(String[] args) throws IOException, TemplateException {
// 定义 service.ftl 模板中的模板参数
String Domain = "Section";
String domain = "section";
Map<String, String> map = new HashMap<>();
map.put("Domain", Domain);
map.put("domain", domain);
FreemarkerUtil.initFtl("service.ftl");
FreemarkerUtil.generator(toServicePath + Domain + "Service.java",map);
}
}
toServicePath
指定的路径为生成最终文件的路径,这里开头的server为什么指向server模块,难道不应该指向当前该文件所在文件夹的位置么?
登录后可查看更多问答,登录/注册