真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

NVelocity中怎么實現(xiàn)代碼生成功能

本篇文章給大家分享的是有關(guān)NVelocity中怎么實現(xiàn)代碼生成功能,小編覺得挺實用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

創(chuàng)新互聯(lián)建站專注于建鄴網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供建鄴營銷型網(wǎng)站建設(shè),建鄴網(wǎng)站制作、建鄴網(wǎng)頁設(shè)計、建鄴網(wǎng)站官網(wǎng)定制、微信平臺小程序開發(fā)服務(wù),打造建鄴網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供建鄴網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。

添加引用

NVelocity中怎么實現(xiàn)代碼生成功能

初始化模板引擎及設(shè)置模板讀取路徑

vltEngine = new VelocityEngine();
            vltEngine.SetProperty(RuntimeConstants.RESOURCE_LOADER, "file");
            vltEngine.SetProperty(RuntimeConstants.FILE_RESOURCE_LOADER_PATH, CloudUtil.GetContentPath() + "/" + "Template");
            vltEngine.Init();

 

讀取模板渲染結(jié)果

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}占位替換具體字符串內(nèi)容

使用 #foreach( $Itemin $ItemList)  #end 來進行循環(huán)渲染

使用 #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;//保存生成后的代碼內(nèi)容到文件            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;
        }
    }

以上就是NVelocity中怎么實現(xiàn)代碼生成功能,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


分享題目:NVelocity中怎么實現(xiàn)代碼生成功能
URL鏈接:http://weahome.cn/article/popdoh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部