栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C# > C#教程

c#基于NVelocity实现代码生成

C#教程 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

c#基于NVelocity实现代码生成

在框架开发过程中,通用代码生成是一项必不可少的功能,c#在这后端模板引擎这方面第三方组件较少,我这里选择的是NVelocity,现在升级到了NetStandard2.0,可以用于NetCore项目

添加引用

初始化模板引擎及设置模板读取路径
vltEngine = new VelocityEngine();
      vltEngine.SetProperty(RuntimeConstants.RESOURCE_LOADER, "file");
      vltEngine.SetProperty(RuntimeConstants.FILE_RESOURCE_LOADER_PATH, CloudUtil.GetContentPath() + "/" + "Template");
      vltEngine.Init();
读取模板渲染结果
VelocityContext vltContext = new VelocityContext();
      foreach (var item in RenderDataDic)
      {
 vltContext.Put(item.Key, item.Value);
      }
      Template vltTemplate = vltEngine.GetTemplate(TemplateFileName);
      System.IO.StringWriter vltWriter = new System.IO.StringWriter();
      vltTemplate.Merge(vltContext, vltWriter);
      string CodeContent = vltWriter.GetStringBuilder().ToString();
模板语法
示例Entity模板
using FastORM.Attribute;
using FastORM.Entity;
using System;
using System.Collections.Generic;
using System.Text;

namespace ${NameSpace}.Entity
{
  [Table(Name = "${TablePhysicalNameLowCase}")]
  public class ${TablePhysicalName} : baseEntity
  {
    [Key]
    public string RowGuid { set; get; }
    #foreach( $Column in $ColumnList)
    #if (($Column.ColumnType == 10 || $Column.ColumnType == 50) && $Column.PhysicalColumnName!="RowGuid")
    public string $Column.PhysicalColumnName { set; get; }
    #end
    #if ($Column.ColumnType == 20 && $Column.PhysicalColumnName!="RowGuid")
    public int $Column.PhysicalColumnName { set; get; }
    #end
    #if ($Column.ColumnType == 30 && $Column.PhysicalColumnName!="RowGuid")
    public decimal $Column.PhysicalColumnName { set; get; }
    #end
    #if ($Column.ColumnType == 40 && $Column.PhysicalColumnName!="RowGuid")
    public DateTime? $Column.PhysicalColumnName { set; get; }
    #end
    #end
  }
}
常用语法

使用${xxx}占位替换具体字符串内容

使用 #foreach( $Itemin $ItemList)  #end 来进行循环渲染

使用 #if #end 来进行分支判断渲染

完整工具类代码
public class TemplateUtil
  {
    private static VelocityEngine vltEngine;
    public static string CodeTempPath;

    private static void InitTemplateSetting()
    {
      CodeTempPath = AppConfigUtil.Configuration["frame:GenerateCodeTemplatePath"];
      DirectoryInfo CodePath = new DirectoryInfo(CloudUtil.GetContentStaticFilePath() + CodeTempPath);
      if (!CodePath.Exists)
      {
 CodePath.Create();
      }
      vltEngine = new VelocityEngine();
      vltEngine.SetProperty(RuntimeConstants.RESOURCE_LOADER, "file");
      vltEngine.SetProperty(RuntimeConstants.FILE_RESOURCE_LOADER_PATH, CloudUtil.GetContentPath() + "/" + "Template");
      vltEngine.Init();
    }

    public static string GeneratemeplateFile(string FileID, string TableName, string TemplateFileName, string CodeFileName, Dictionary RenderDataDic)
    {
      InitTemplateSetting();
      DirectoryInfo CodePath = new DirectoryInfo(CloudUtil.GetContentStaticFilePath() + CodeTempPath + "/" + FileID);
      if (!CodePath.Exists)
      {
 CodePath.Create();
      }
      CodePath = new DirectoryInfo(CloudUtil.GetContentStaticFilePath() + CodeTempPath + "/" + FileID + "/" + TableName);
      if (!CodePath.Exists)
      {
 CodePath.Create();
      }
      VelocityContext vltContext = new VelocityContext();
      foreach (var item in RenderDataDic)
      {
 vltContext.Put(item.Key, item.Value);
      }
      Template vltTemplate = vltEngine.GetTemplate(TemplateFileName);
      System.IO.StringWriter vltWriter = new System.IO.StringWriter();
      vltTemplate.Merge(vltContext, vltWriter);
      string CodeContent = vltWriter.GetStringBuilder().ToString();
      string CodeFilePath = CloudUtil.GetContentStaticFilePath() + CodeTempPath + "/" + FileID + "/" + TableName + "/" + CodeFileName;
      //保存生成后的代码内容到文件
      FileUtil.SaveStringToFile(CodeFilePath, CodeContent);
      return CodeFilePath;
    }

    public static string GenerateTemplateContent(string TemplateFileName, Dictionary RenderDataDic)
    {
      InitTemplateSetting();
      VelocityContext vltContext = new VelocityContext();
      foreach (var item in RenderDataDic)
      {
 vltContext.Put(item.Key, item.Value);
      }
      Template vltTemplate = vltEngine.GetTemplate(TemplateFileName);
      System.IO.StringWriter vltWriter = new System.IO.StringWriter();
      vltTemplate.Merge(vltContext, vltWriter);
      string CodeContent = vltWriter.GetStringBuilder().ToString();
      return CodeContent;
    }
  }

以上就是c#基于NVelocity实现代码生成的详细内容,更多关于NVelocity实现代码生成的资料请关注考高分网其它相关文章!

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/121441.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号