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

com.diamondfsd.codegen.service.ICodeGenerator Maven / Gradle / Ivy

Go to download

simple code generate maven plugin. Template rendering through Java and freemarker.

There is a newer version: 1.1.1
Show newest version
package com.diamondfsd.codegen.service;

import com.diamondfsd.codegen.ModelDefine;

import java.io.IOException;

/**
 * 代码生成器
 * @author zhouchao
 * @date: 2019-04-17
 */
public interface ICodeGenerator {
    /**
     * 生成文件
     * @param templatePath 模板路径
     * @param modelDefine 模型定义
     * @param templateRender 模板渲染类
     * @throws IOException
     */
    void codeGenerator(String templatePath, ModelDefine modelDefine, ITemplateRender templateRender) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy