您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關NVelocity中怎么實現代碼生成功能,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
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();
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<string, object> 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<string, object> 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; } }
以上就是NVelocity中怎么實現代碼生成功能,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。