All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mybatisflex.codegen.template.impl.EnjoyTemplate Maven / Gradle / Ivy

There is a newer version: 1.10.1
Show newest version
/*
 *  Copyright (c) 2022-2025, Mybatis-Flex ([email protected]).
 *  

* 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 com.mybatisflex.codegen.template.impl; import com.jfinal.template.Engine; import com.jfinal.template.expr.ast.FieldGetters; import com.jfinal.template.source.ClassPathSource; import com.jfinal.template.source.FileSource; import com.jfinal.template.source.ISource; import com.jfinal.template.source.ISourceFactory; import com.mybatisflex.codegen.template.ITemplate; import com.mybatisflex.core.util.StringUtil; import java.io.File; import java.io.FileOutputStream; import java.util.Map; /** * JFinal Enjoy 模板引擎实现。 * * @author michael */ public class EnjoyTemplate implements ITemplate { private static final String engineName = "mybatis-flex"; private final Engine engine; public EnjoyTemplate() { Engine engine = Engine.use(engineName); if (engine == null) { synchronized (EnjoyTemplate.class) { engine = Engine.use(engineName); if (engine == null) { engine = Engine.create(engineName, e -> { e.addSharedStaticMethod(StringUtil.class); e.setSourceFactory(new FileAndClassPathSourceFactory()); }); // 以下配置将支持 user.girl 表达式去调用 user 对象的 boolean isGirl() 方法 Engine.addFieldGetterToFirst(new FieldGetters.IsMethodFieldGetter()); } } } this.engine = engine; } @Override public void generate(Map params, String templateFilePath, File generateFile) { if (!generateFile.getParentFile().exists() && !generateFile.getParentFile().mkdirs()) { throw new IllegalStateException("Can not mkdirs by dir: " + generateFile.getParentFile()); } // 开始生成文件 try (FileOutputStream fileOutputStream = new FileOutputStream(generateFile)) { engine.getTemplate(templateFilePath).render(params, fileOutputStream); } catch (Exception e) { e.printStackTrace(); } } /** * 从文件或者类路径读取模板。 * * @author 王帅 */ public static class FileAndClassPathSourceFactory implements ISourceFactory { @Override public ISource getSource(String baseTemplatePath, String fileName, String encoding) { // 先从文件寻找资源,找不到再从类路径寻找资源 if (new File(fileName).exists()) { return new FileSource(baseTemplatePath, fileName, encoding); } return new ClassPathSource(baseTemplatePath, fileName, encoding); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy