/** * Copyright (c) 2011-2020, hubin (jobob@qq.com). *
* Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at *
* http://www.apache.org/licenses/LICENSE-2.0 *
* Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package cn.stylefeng.guns.gen.core.engine; import cn.stylefeng.guns.gen.modular.model.FieldConfig; import cn.stylefeng.guns.gen.modular.model.GenSessionFieldConfigs; import cn.stylefeng.guns.gen.core.util.FieldsConfigHolder; import cn.stylefeng.guns.gen.core.util.TableInfoUtil; import com.baomidou.mybatisplus.core.toolkit.StringPool; import com.baomidou.mybatisplus.core.toolkit.StringUtils; import com.baomidou.mybatisplus.generator.config.ConstVal; import com.baomidou.mybatisplus.generator.config.builder.ConfigBuilder; import com.baomidou.mybatisplus.generator.config.po.TableInfo; import com.baomidou.mybatisplus.generator.engine.VelocityTemplateEngine; import org.apache.velocity.Template; import org.apache.velocity.VelocityContext; import org.apache.velocity.app.Velocity; import org.apache.velocity.app.VelocityEngine; import java.io.BufferedWriter; import java.io.FileOutputStream; import java.io.OutputStreamWriter; import java.util.List; import java.util.Map; import java.util.Properties; import java.util.stream.Collectors; /** *
* 重写Mybatis-Plus的Velocity模板引擎实现 *
* * @author hubin, fengshuonan * @since 2018-01-10 */ public class GunsMpVelocityTemplateEngine extends VelocityTemplateEngine { private static final String DOT_VM = ".vm"; private VelocityEngine velocityEngine; @Override public VelocityTemplateEngine init(ConfigBuilder configBuilder) { super.init(configBuilder); if (null == velocityEngine) { Properties p = new Properties(); p.setProperty(ConstVal.VM_LOAD_PATH_KEY, ConstVal.VM_LOAD_PATH_VALUE); p.setProperty(Velocity.FILE_RESOURCE_LOADER_PATH, StringPool.EMPTY); p.setProperty(Velocity.ENCODING_DEFAULT, ConstVal.UTF8); p.setProperty(Velocity.INPUT_ENCODING, ConstVal.UTF8); p.setProperty("file.resource.loader.unicode", StringPool.TRUE); velocityEngine = new VelocityEngine(p); } return this; } @Override public void writer(Map