企业库5:创建企业库对象的实例

时间:2012-12-04 15:36:59

标签: winforms enterprise-library-5

我在win-form Application中使用Enterprise Library 5.0。

1。关于创建企业库对象的实例

解析Logging / exception对象的引用的最佳方法是什么?在我们的应用中,我们在解决方案中有不同的应用所以解决方案有以下项目:

CommonLib(类Lib) CustomerApp(winform app) CustWinService(赢得服务项目) ClassLib2(类Lib)

我在CommonLib项目中实现了如下的日志记录/例外。创建了一个AppLog类,如下所示:

 public class AppLog
    {
        public static LogWriter defaultWriter = EnterpriseLibraryContainer.Current.GetInstance<LogWriter>();
public static ExceptionManager exManager = EnterpriseLibraryContainer.Current.GetInstance<ExceptionManager>();
        public AppLog()
        {
        }

    public static void WriteLog(string LogMessage, string LogCategories)
    {
        // Create a LogEntry and populate the individual properties.
            if (defaultWriter.IsLoggingEnabled())
            {
                string[] Logcat = LogCategories.Split(",".ToCharArray());
                LogEntry entry2 = new LogEntry();
                entry2.Categories = Logcat;
                entry2.EventId = 9007;
                entry2.Message = LogMessage;
                entry2.Priority = 9;
                entry2.Title = "Logging Block Examples";
                defaultWriter.Write(entry2);
            }
    }
}

然后我在下面的Applog类中使用了不同项目中的日志记录和异常:

            try
            {
                AppLog.WriteLog("This is Production Log Entry.", "ExceCategory");
                string strtest = string.Empty;
                strtest = strtest.Substring(1);
            }
            catch (Exception ex)
            {

                bool rethrow = AppLog.exManager.HandleException(ex, "ExcePolicy");

            }

那么它是使用Logging和Exception的正确方法吗?或任何其他方式我可以改善它?

2。记录文件名动态

在日志记录块中,我们有需要在app.config文件中设置的fileName。有没有办法可以通过编码动态分配fileName值?因为我不想在配置文件中对其进行硬编码,并且生产和开发环境的路径也不同。

由于 TShah

1 个答案:

答案 0 :(得分:0)

为了使您的应用程序松散耦合并更容易测试,我建议您定义单独的日志记录和异常处理接口,然后让AppLog类实现这两者。然后,您的应用程序可以通过这些接口执行日志记录和异常处理,AppLog提供实现。

您可以使用配置转换为每个环境设置不同的文件名,我相信您可以使用Slow Cheetah在winforms应用程序中使用。