项目脚手架生成

一种方式是通过maven工具

可以参考官网或者博客

如:https://www.jianshu.com/p/72651148d3cb


还有一种方式是通过Freemarker工具,手动把固定已有代码中的变量替换为对应项目名称

Configuration config =new Configuration();

Template template = config.getTemplate(“xx.ftl","UTF-8");

File outFile =new File("outPath");

Writer out =new BufferedWriter(new OutputStreamWriter(new FileOutputStream("outFileName"),StandardCharsets.UTF_8));

template.process(templateData, out);

out.flush();

两种方式大同小异

你可能感兴趣的:(项目脚手架生成)