Search in sources :

Example 1 with GenTable

use of com.ruoyi.gen.domain.GenTable in project RuoYi-Cloud by yangzongzhuan.

the class GenTableServiceImpl method generatorCode.

/**
 * 生成代码(自定义路径)
 *
 * @param tableName 表名称
 */
@Override
public void generatorCode(String tableName) {
    // 查询表信息
    GenTable table = genTableMapper.selectGenTableByName(tableName);
    // 设置主子表信息
    setSubTable(table);
    // 设置主键列信息
    setPkColumn(table);
    VelocityInitializer.initVelocity();
    VelocityContext context = VelocityUtils.prepareContext(table);
    // 获取模板列表
    List<String> templates = VelocityUtils.getTemplateList(table.getTplCategory());
    for (String template : templates) {
        if (!StringUtils.containsAny(template, "sql.vm", "api.js.vm", "index.vue.vm", "index-tree.vue.vm")) {
            // 渲染模板
            StringWriter sw = new StringWriter();
            Template tpl = Velocity.getTemplate(template, Constants.UTF8);
            tpl.merge(context, sw);
            try {
                String path = getGenPath(table, template);
                FileUtils.writeStringToFile(new File(path), sw.toString(), CharsetKit.UTF_8);
            } catch (IOException e) {
                throw new ServiceException("渲染模板失败,表名:" + table.getTableName());
            }
        }
    }
}
Also used : StringWriter(java.io.StringWriter) ServiceException(com.ruoyi.common.core.exception.ServiceException) GenTable(com.ruoyi.gen.domain.GenTable) VelocityContext(org.apache.velocity.VelocityContext) IOException(java.io.IOException) File(java.io.File) Template(org.apache.velocity.Template)

Example 2 with GenTable

use of com.ruoyi.gen.domain.GenTable in project RuoYi-Cloud by yangzongzhuan.

the class GenTableServiceImpl method selectGenTableById.

/**
 * 查询业务信息
 *
 * @param id 业务ID
 * @return 业务信息
 */
@Override
public GenTable selectGenTableById(Long id) {
    GenTable genTable = genTableMapper.selectGenTableById(id);
    setTableFromOptions(genTable);
    return genTable;
}
Also used : GenTable(com.ruoyi.gen.domain.GenTable)

Example 3 with GenTable

use of com.ruoyi.gen.domain.GenTable in project RuoYi-Cloud by yangzongzhuan.

the class GenTableServiceImpl method previewCode.

/**
 * 预览代码
 *
 * @param tableId 表编号
 * @return 预览数据列表
 */
@Override
public Map<String, String> previewCode(Long tableId) {
    Map<String, String> dataMap = new LinkedHashMap<>();
    // 查询表信息
    GenTable table = genTableMapper.selectGenTableById(tableId);
    // 设置主子表信息
    setSubTable(table);
    // 设置主键列信息
    setPkColumn(table);
    VelocityInitializer.initVelocity();
    VelocityContext context = VelocityUtils.prepareContext(table);
    // 获取模板列表
    List<String> templates = VelocityUtils.getTemplateList(table.getTplCategory());
    for (String template : templates) {
        // 渲染模板
        StringWriter sw = new StringWriter();
        Template tpl = Velocity.getTemplate(template, Constants.UTF8);
        tpl.merge(context, sw);
        dataMap.put(template, sw.toString());
    }
    return dataMap;
}
Also used : StringWriter(java.io.StringWriter) GenTable(com.ruoyi.gen.domain.GenTable) VelocityContext(org.apache.velocity.VelocityContext) LinkedHashMap(java.util.LinkedHashMap) Template(org.apache.velocity.Template)

Example 4 with GenTable

use of com.ruoyi.gen.domain.GenTable in project RuoYi-Cloud by yangzongzhuan.

the class VelocityUtils method setSubVelocityContext.

public static void setSubVelocityContext(VelocityContext context, GenTable genTable) {
    GenTable subTable = genTable.getSubTable();
    String subTableName = genTable.getSubTableName();
    String subTableFkName = genTable.getSubTableFkName();
    String subClassName = genTable.getSubTable().getClassName();
    String subTableFkClassName = StringUtils.convertToCamelCase(subTableFkName);
    context.put("subTable", subTable);
    context.put("subTableName", subTableName);
    context.put("subTableFkName", subTableFkName);
    context.put("subTableFkClassName", subTableFkClassName);
    context.put("subTableFkclassName", StringUtils.uncapitalize(subTableFkClassName));
    context.put("subClassName", subClassName);
    context.put("subclassName", StringUtils.uncapitalize(subClassName));
    context.put("subImportList", getImportList(genTable.getSubTable()));
}
Also used : GenTable(com.ruoyi.gen.domain.GenTable)

Example 5 with GenTable

use of com.ruoyi.gen.domain.GenTable in project RuoYi-Cloud by yangzongzhuan.

the class VelocityUtils method getImportList.

/**
 * 根据列类型获取导入包
 *
 * @param genTable 业务表对象
 * @return 返回需要导入的包列表
 */
public static HashSet<String> getImportList(GenTable genTable) {
    List<GenTableColumn> columns = genTable.getColumns();
    GenTable subGenTable = genTable.getSubTable();
    HashSet<String> importList = new HashSet<String>();
    if (StringUtils.isNotNull(subGenTable)) {
        importList.add("java.util.List");
    }
    for (GenTableColumn column : columns) {
        if (!column.isSuperColumn() && GenConstants.TYPE_DATE.equals(column.getJavaType())) {
            importList.add("java.util.Date");
            importList.add("com.fasterxml.jackson.annotation.JsonFormat");
        } else if (!column.isSuperColumn() && GenConstants.TYPE_BIGDECIMAL.equals(column.getJavaType())) {
            importList.add("java.math.BigDecimal");
        }
    }
    return importList;
}
Also used : GenTable(com.ruoyi.gen.domain.GenTable) GenTableColumn(com.ruoyi.gen.domain.GenTableColumn) HashSet(java.util.HashSet)

Aggregations

GenTable (com.ruoyi.gen.domain.GenTable)27 GenTableColumn (com.ruoyi.gen.domain.GenTableColumn)12 IOException (java.io.IOException)12 StringWriter (java.io.StringWriter)12 Template (org.apache.velocity.Template)12 VelocityContext (org.apache.velocity.VelocityContext)12 ServiceException (com.ruoyi.common.core.exception.ServiceException)9 ZipEntry (java.util.zip.ZipEntry)6 File (java.io.File)5 Snowflake (cn.hutool.core.lang.Snowflake)4 LinkedHashMap (java.util.LinkedHashMap)4 Transactional (org.springframework.transaction.annotation.Transactional)4 Constants (com.ruoyi.common.core.constant.Constants)3 GenConstants (com.ruoyi.common.core.constant.GenConstants)3 StringUtils (com.ruoyi.common.core.utils.StringUtils)3 GenTableColumnMapper (com.ruoyi.gen.mapper.GenTableColumnMapper)3 GenTableMapper (com.ruoyi.gen.mapper.GenTableMapper)3 GenUtils (com.ruoyi.gen.util.GenUtils)3 VelocityInitializer (com.ruoyi.gen.util.VelocityInitializer)3 VelocityUtils (com.ruoyi.gen.util.VelocityUtils)3