代码之家  ›  专栏  ›  技术社区  ›  Martin Slezák

ASP。NET样板和Windows服务

  •  1
  • Martin Slezák  · 技术社区  · 7 年前

    1 回复  |  直到 7 年前
        1
  •  2
  •   Alper Ebicoglu    7 年前

    当然,您可以在Windows服务项目中使用AppServices。也可以在windows服务中编写后台作业。您需要从Windows服务引用应用程序项目。因为每个项目都表现为模块。您的新Windows服务需要注册为模块。因此,您可以使用依赖服务和其他有用的ABP库。

    我将向您展示一些关于模块化的示例代码。但我建议您阅读模块文档: https://aspnetboilerplate.com/Pages/Documents/Module-System

    MyWindowsServiceManagementModule。反恐精英

     [DependsOn(typeof(MySampleProjectApplicationModule))]
        public class MyWindowsServiceManagementModule : AbpModule
        {
            public override void Initialize()
            {
                IocManager.RegisterAssemblyByConvention(Assembly.GetExecutingAssembly());
    
            }
    
        }
    

    public partial class MyWindowsServiceWinService : ServiceBase
        {
            private MyWindowsServiceManagementBootstrapper _bootstrapper;
    
            public MyWindowsServiceWinService()
            {
                InitializeComponent();
            }
    
            protected override void OnStart(string[] args)
            {
                try
                {
                    _bootstrapper = new MyWindowsServiceManagementBootstrapper();
                    _bootstrapper.Initialize();
                }
    
                catch (Exception ex)
                {
                    //EventLog.WriteEntry("MyWindowsService can not be started. Exception message = " + ex.GetType().Name + ": " + ex.Message + " | " + ex.StackTrace, EventLogEntryType.Error);               
                }
            }
    
            protected override void OnStop()
            {
                try
                {
                    _bootstrapper.Dispose();
                }           
                catch (Exception ex)
                {
                    //log...
                }           
            }
        }
    

    MyWindowsServiceManagementBootstrapper。反恐精英

        public class MyWindowsServiceManagementBootstrapper : AbpBootstrapper
            {
    
                public override void Initialize()
                {
                    base.Initialize(); 
                }
    
                public override void Dispose()
                {
                    //release your resources...
                    base.Dispose();
                }
            }
    

    Ps:当我在头上写代码时,它可能会抛出错误,但基本上这应该能指导你。