// 创建输出流
File file = new File("C:\\project\\nginx-1.14.0\\html\\item\\" + spuId + ".html");
writer = new PrintWriter(file);
// 执行页面静态化方法
templateEngine.process("item", context, writer);
在window下,纠结着怎么把生成的静态化文件直接上传到linux。
分析:理论上这个路径是通过配置读取的,window环境下就写window的路径,后面我们如果部署到linux服务器,把配置文件相应的路径改成linux下的路径即可。