Aspnet Zero中使用Windows service (Topshelf)来承载Quartz.net任务
Aspnet Zero使用Windows service (Topshelf)来承载Quartz.net任务
网上有很多关于如何使用Topshelf创建ABP的Quartz windows服务,但很少(没有)有介绍如何配合Aspnet Zero使用的文章,本文记录集成过程,以供参考。
在官方Aspnet Zero模板解决方案中建立Console类型的项目,并安装以下buget package:
Topshelf
Abp.Quartz
Abp.Castle.Log4Net
Abp.AspnetCore
(后面有用到)添加引用
MyCompanyName.AbpZeroTemplate.Core
和MyCompanyName.AbpZeroTemplate.Core
项目最终引用如图:
创建Module文件,
- 添加相关DependsOn属性;
abpZeroTemplateEntityFrameworkCoreModule.SkipDbSeed = true;
这里我们需要禁用数据库初始化动作,因为所有的初始化动作都在Host端完成;- 设置数据库连接字符串
Configuration.DefaultNameOrConnectionString = _appConfiguration.GetConnectionString( AbpZeroTemplateConsts.ConnectionStringName );
最终文件如下:
namespace MyCompanyName.AbpZeroTemplate.WinService
{
[DependsOn(typeof(AbpZeroTemplateCoreModule),
typeof(AbpZeroTemplateEntityFrameworkCoreModule),
typeof(AbpQuartzModule)
)]
public class AbpZeroWinServiceModule : AbpModule
{
private readonly IConfigurationRoot _appConfiguration; public AbpZeroWinServiceModule(AbpZeroTemplateEntityFrameworkCoreModule abpZeroTemplateEntityFrameworkCoreModule)
{
abpZeroTemplateEntityFrameworkCoreModule.SkipDbSeed = true; _appConfiguration = AppConfigurations.Get(
typeof(AbpZeroWinServiceModule).GetAssembly().GetDirectoryPathOrNull(),
addUserSecrets: true
);
} public override void PreInitialize()
{
//Set default connection string
Configuration.DefaultNameOrConnectionString = _appConfiguration.GetConnectionString(
AbpZeroTemplateConsts.ConnectionStringName
);
} public override void Initialize()
{
this.IocManager.RegisterAssemblyByConvention(Assembly.GetExecutingAssembly()); }
}
}
修改Program.cs文件
- 设置工作目录
Directory.SetCurrentDirectory(currentDirectory);
, 目的是为了保证工作在windows service时log文件存放目录正确,如果不设置, 工作在windows service时log文件将会存放在system32目录中 - 注册IdentityRegistrar以及添加abp依赖,这一步是必须的,否则会出现依赖错误:
Castle.MicroKernel.Handlers.HandlerException: 'Can't create component 'Portal.Authorization.Users.UserManager' as it has dependencies to be satisfied.
添加abp依赖的同时我们同时添加log4net和插件支持.(注意路径)var services = new ServiceCollection();
IdentityRegistrar.Register(services); services.AddAbp<AbpZeroWinServiceModule>(options =>
{
//Configure Log4Net logging
options.IocManager.IocContainer.AddFacility<LoggingFacility>(
f => f.UseAbpLog4Net().WithConfig(Path.Combine(currentDirectory, $"log4net.config"))
); options.PlugInSources.AddFolder(Path.Combine(currentDirectory, "Plugins"), SearchOption.AllDirectories);
});
完整Program.cs代码如下:
class Program
{
static void Main(string[] args)
{
var currentDirectory = typeof(Program).GetAssembly().GetDirectoryPathOrNull();
// 设置工作目录. 保证工作在windows service时log文件存放目录正确
// 如果不设置, 工作在windows service时log文件将会存放在system32目录中
Directory.SetCurrentDirectory(currentDirectory); var services = new ServiceCollection();
IdentityRegistrar.Register(services); services.AddAbp<AbpZeroWinServiceModule>(options =>
{
//Configure Log4Net logging
options.IocManager.IocContainer.AddFacility<LoggingFacility>(
f => f.UseAbpLog4Net().WithConfig(Path.Combine(currentDirectory, $"log4net.config"))
); options.PlugInSources.AddFolder(Path.Combine(currentDirectory, "Plugins"), SearchOption.AllDirectories);
}); HostFactory.Run(x =>
{
x.Service<AbpZeroWinService>(s =>
{
s.ConstructUsing(name => new AbpZeroWinService());
s.WhenStarted((tc, hostControl) => tc.Start(hostControl));
s.WhenStopped((tc, hostControl) => tc.Stop(hostControl));
}); x.RunAsLocalSystem();
x.StartAutomatically(); x.SetDescription("ABP服务测试");
x.SetDisplayName("ABPTestService");
x.SetServiceName("ABPTestService");
});
}
}
- 设置工作目录
启动ABP. Windows service启动时会调用
s.ConstructUsing(name => new AbpZeroWinService());
, 因此我们在AbpZeroWinService
中启动ABP.- 创建
AbpZeroWinService
类继承自ServiceControl
, 在Start
中初始化AbpBootstrapper
, 同时在停止Stop
中销毁AbpBootstrapper
. 代码如下:
public class AbpZeroWinService : ServiceControl
{
private AbpBootstrapper _bootstrapper;
public bool Start(HostControl hostControl)
{
_bootstrapper = IocManager.Instance.Resolve<AbpBootstrapper>();
_bootstrapper.Initialize();
return true;
} public bool Stop(HostControl hostControl)
{
_bootstrapper.Dispose();
return true;
}
}
- 创建
quartz.net的配置
quartz.config
中必须使用AdoJobStore
类型,并且使用和Host一样的Quartz数据库连接,这样才能实现在host上添加任务,最终由windows service来执行任务。
(请在HostModule的PreInitialize
方法中禁用Job执行Configuration.BackgroundJobs.IsJobExecutionEnabled = false;
)运行前确保Quartz.net数据库已建立,如何建立请参考Quartz.net官方文档
以上如有错误的地方请大家指正! 如果更好的实现方式,也请分享一下。
最后给出WindowService项目的源码,Aspnet Zero的项目自行解决。
source code
Aspnet Zero中使用Windows service (Topshelf)来承载Quartz.net任务的更多相关文章
- Win7中不能调试windows service
多年前玩过一次windows service,觉得挺简单的. 这次工作要维护产品中的windows service,发现不是那么简单,vs附加调试器的窗体中无法找到windows service进程. ...
- WCF Windows Service Using TopShelf and ServiceModelEx z
http://lourenco.co.za/blog/2013/08/wcf-windows-service-using-topshelf-and-servicemodelex/ There are ...
- 创建需要计时器的windows service
1.在VS中建立windows service后,应该添加一个安装程序. 2.在默认的Service1.cs设计界面右键,添加安装程序,生成ProjectInstaller.包含两个类serviceP ...
- C# 通过 Quartz .NET 实现Timer Job并将其注册成为Windows Service
之前的一篇文章讲述了如何通过 Quartz .NET 实现 Timer Job (http://www.cnblogs.com/mingmingruyuedlut/p/8037263.html) 在此 ...
- .NET 6学习笔记(2)——通过Worker Service创建Windows Service
通过Visual Studio中的Windows Service模板,我么可以创建.NET Framework版本的Windows Service,网络上对此已有详细且丰富的各路教程.但在我们升级到. ...
- 如何托管ASP.NET Core应用到Windows Service中
(此文章同时发表在本人微信公众号"dotNET开发经验谈",欢迎右边二维码来关注.) 题记:正在构思一个中间件的设计,考虑是否既可以使用最新的技术,也可以兼顾传统的部署模式.所以有 ...
- .NET开发Windows Service程序 - Topshelf
在实际项目开发过程中,会经常写一些类似定时检查,应用监控的应用.这类应用在windows平台通常都会写成window service程序. 在百度上搜索一下'c#开发windows service', ...
- quartz.net结合Topshelf实现windows service服务托管的作业调度框架
topshelf可以很简单方便的实现windows service服务,详见我的一篇博客的介绍 http://www.cnblogs.com/xiaopotian/articles/5428361.h ...
- ASP.NET Core应用到Windows Service中
托管到Windows Service中 众所周知,ASP.NET Core采用了和传统ASP.NET不同的托管和HTTP处理方式,即把服务器和托管环境完全解耦. ASP.NET Core内置了两个HT ...
随机推荐
- Python Ethical Hacking - WEB PENETRATION TESTING(5)
Guessing Login Information on Login Pages Our target website: http://10.0.0.45/dvwa/login.php #!/usr ...
- vector基本用法
Vector作为STL容器中的一员,使用频率非常高,因此对其基本用法和实用技巧进行记录,便于后期查询使用. 基本用法 #include <iostream> #include <ve ...
- Django安装与简单配置(1)
目录 1. 环境准备 2. 开始安装 2.1 安装Django 2.2 安装 Mysql数据库 3. 开始配置 3.1 Django简单配置 3.1.1 创建一个工程(project)为devops: ...
- intellij IDEA导入maven项目
一.导入maven项目 1.打开intellij idea,点击File(如下图1),然后点击Open(如下图2)
- 如何在sed中使用变量,两种方法
第一 在sed条件中是不认识变量取值的 sed '/$x/d' test 所以要想它能够识别变量 sed "/$x/d/" test 方法简单就是把"单引号"变 ...
- 看完这篇,再也不怕被问到 AsyncTask 的原理了
本文很多资料基于Google Developer官方对AsyncTask的最新介绍. AsyncTask 是什么 AsyncTask is designed to be a helper class ...
- Python字符串更新
Python字符串更新:截取字符串的某一部分 和 其他字符串进行拼接. 注:可以修改字符串的值,但修改的不是内存中的值,而是创建新的字符串. 1.使用字符串常量进行更新: # 使用字符串常量 strs ...
- 4-Pandas之数据类型与数据筛选
一.数据类型 1.Pandas的数据类型主要结合了pandas和numpy两个模块中的数据类型,包括以下几种: float int bool datetime64[ns]------>日期类型 ...
- Python os.pipe() 方法
概述 os.pipe() 方法用于创建一个管道, 返回一对文件描述符(r, w) 分别为读和写.高佣联盟 www.cgewang.com 语法 pipe()方法语法格式如下: os.pipe() 参数 ...
- Python Tuple(元组) min()方法
描述 Python 元组 min() 函数返回元组中元素最小值.高佣联盟 www.cgewang.com 语法 min()方法语法: min(tuple) 参数 tuple -- 指定的元组. 返回值 ...