欢迎来到天天文库
浏览记录
ID:36235098
大小:77.12 KB
页数:12页
时间:2019-05-07
《[entlib]微软企业库5.0 学习之路——第九步、使用policyinjection模块进行aop—part4——建立自定义call handler实现用户操作日志记录》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、[EntLib]微软企业库5.0学习之路——第九步、使用PolicyInjection模块进行AOP—PART4——建立自定义CallHandler实现用户操作日志记录 在前面的Part3中,我介绍PolicyInjection模块中内置的CallHandler的使用方法,今天则继续介绍CallHandler——CustomCallHandler,通过建立CustomCallHandler来实现项目中的用户操作日志的记录,具体的代码可以在项目中EntLib.Helper项目下找到,如下图:本文将从CustomCallHandler两种方式来介绍:Attribute方式和Conf
2、iguration方式。 一、核心代码建立CustomCallHandler则需要有以下几个步骤:1、建立一个类实现接口ICallHandler。2、根据具体需求建立对应Attribute类或为CustomCallHandler实现特性[ConfigurationElementType(typeof(CustomCallHandlerData))]首先来介绍下具体的核心代码,由于我是要实现用户的操作日志,则需要对用户的对数据的增删改以及一些特殊的操作进行记录,如:登录,1、首先需要建立一张表用于存放用户操作记录:CREATETABLE[dbo].[UserLog]( [ID
3、][int]IDENTITY(1,1)NOTNULL,--主键 [StudentId][int]NOTNULL,--对应学生ID [Message][nvarchar](256)NOTNULL,--操作消息 [LogDate][datetime]NOTNULL,--记录时间CONSTRAINT[PK_UserLog]PRIMARYKEYCLUSTERED( [ID]ASC)WITH(PAD_INDEX =OFF,STATISTICS_NORECOMPUTE =OFF,IGNORE_DUP_KEY=OFF,ALLOW_ROW_LOCKS =
4、ON,ALLOW_PAGE_LOCKS =ON)ON[PRIMARY])ON[PRIMARY]2、建立一个名为UserLogCallHandler的类来实现接口ICallHandler,实现其中的方法Invoke(具体的拦截操作方法)和属性Order,具体代码如下(关键处我都写好注释了)usingSystem;usingSystem.Collections.Generic;usingSystem.Collections.Specialized;usingSystem.Data;usingSystem.Data.Common;usingSystem.Linq;usingSystem.Te
5、xt; usingMicrosoft.Practices.EnterpriseLibrary.Common.Configuration;usingMicrosoft.Practices.EnterpriseLibrary.Data;usingMicrosoft.Practices.Unity.InterceptionExtension; namespaceEntLibStudy.Helper.EntLibExtension.PolicyInjectionExtension{ [ConfigurationElementType(typeof(CustomCallHandlerData
6、))] publicclassUserLogCallHandler:ICallHandler { /// ///构造函数,此处不可省略,否则会导致异常 /// ///配置文件中所配置的参数 publicUserLogCallHandler(NameValueCollectionattributes) { //从配置文件中获取key,如不存在则指定默认key this.
7、Message=String.IsNullOrEmpty(attributes["Message"])?"":attributes["Message"]; this.ParameterName=String.IsNullOrEmpty(attributes["ParameterName"])?"":attributes["ParameterName"]; } /// /
此文档下载收益归作者所有