/** * 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 objectMap, String templatePath, String outputFile) throws Exception { if (StringUtils.isEmpty(templatePath)) { return; } Template template = velocityEngine.getTemplate(templatePath, ConstVal.UTF8); try (FileOutputStream fos = new FileOutputStream(outputFile); OutputStreamWriter ow = new OutputStreamWriter(fos, ConstVal.UTF8); BufferedWriter writer = new BufferedWriter(ow)) { template.merge(new VelocityContext(objectMap), writer); } logger.debug("模板:" + templatePath + "; 文件:" + outputFile); } @Override public String templateFilePath(String filePath) { if (null == filePath || filePath.contains(DOT_VM)) { return filePath; } return filePath + DOT_VM; } /** * 重写父类的方法,增加一个变量,为了在mapping.xml的Base_Column_List增加base前缀 * * @author fengshuonan * @Date 2019/1/10 12:51 PM */ @Override public Map getObjectMap(TableInfo tableInfo) { Map objectMap = super.getObjectMap(tableInfo); objectMap.put("tableRebuild", TableInfoUtil.getFieldNames(tableInfo)); //获取当前线程变量获取的字段配置信息 GenSessionFieldConfigs genSessionFieldConfigs = FieldsConfigHolder.get(); List fieldConfigs = genSessionFieldConfigs.getFieldConfigs(tableInfo.getName()); //带条件配置的字段 List conditionFields = fieldConfigs.stream().filter(FieldConfig::getQueryConditionFlag) .collect(Collectors.toList()); objectMap.put("mapperConditions", conditionFields); return objectMap; } }