diff --git a/content/aspnetcore/NuGet.Config b/content/aspnetcore/NuGet.Config
index 0d5eaacd..1dcaa402 100644
--- a/content/aspnetcore/NuGet.Config
+++ b/content/aspnetcore/NuGet.Config
@@ -1,10 +1,6 @@
-
-
-
-
-
+
\ No newline at end of file
diff --git a/content/aspnetcore/Zzz.sln b/content/aspnetcore/Zzz.sln
index 2c9c8bb2..0c30763a 100644
--- a/content/aspnetcore/Zzz.sln
+++ b/content/aspnetcore/Zzz.sln
@@ -42,8 +42,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
..\..\Readme.md = ..\..\Readme.md
EndProjectSection
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Zzz.PublicApi.Host", "src\Zzz.PublicApi.Host\Zzz.PublicApi.Host.csproj", "{AA3C1547-1A82-470E-9EB7-1C9E9AA50136}"
-EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -106,10 +104,6 @@ Global
{748584B1-BA69-4F6A-81AA-F4BDE6BCE29D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{748584B1-BA69-4F6A-81AA-F4BDE6BCE29D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{748584B1-BA69-4F6A-81AA-F4BDE6BCE29D}.Release|Any CPU.Build.0 = Release|Any CPU
- {AA3C1547-1A82-470E-9EB7-1C9E9AA50136}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {AA3C1547-1A82-470E-9EB7-1C9E9AA50136}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {AA3C1547-1A82-470E-9EB7-1C9E9AA50136}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {AA3C1547-1A82-470E-9EB7-1C9E9AA50136}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@@ -129,7 +123,6 @@ Global
{E512F4D9-9375-480F-A2F6-A46509F9D824} = {04DBDB01-70F4-4E06-B468-8F87850B22BE}
{AA94D832-1CCC-4715-95A9-A483F23A1A5D} = {CA9AC87F-097E-4F15-8393-4BC07735A5B0}
{748584B1-BA69-4F6A-81AA-F4BDE6BCE29D} = {CA9AC87F-097E-4F15-8393-4BC07735A5B0}
- {AA3C1547-1A82-470E-9EB7-1C9E9AA50136} = {CA9AC87F-097E-4F15-8393-4BC07735A5B0}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {28315BFD-90E7-4E14-A2EA-F3D23AF4126F}
diff --git a/content/aspnetcore/src/Zzz.Application.Contracts/Dic/IDataDicManager.cs b/content/aspnetcore/src/Zzz.Application.Contracts/Dic/IDataDicManager.cs
new file mode 100644
index 00000000..787f2a91
--- /dev/null
+++ b/content/aspnetcore/src/Zzz.Application.Contracts/Dic/IDataDicManager.cs
@@ -0,0 +1,12 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Zzz.Dic
+{
+ public interface IDataDicManager
+ {
+ Task FindAsync(string name, string label);
+ }
+}
diff --git a/content/aspnetcore/src/Zzz.Application.Contracts/Dic/IDicAppService.cs b/content/aspnetcore/src/Zzz.Application.Contracts/Dic/IDicAppService.cs
index 675c4edd..fb81f6bb 100644
--- a/content/aspnetcore/src/Zzz.Application.Contracts/Dic/IDicAppService.cs
+++ b/content/aspnetcore/src/Zzz.Application.Contracts/Dic/IDicAppService.cs
@@ -1,25 +1,16 @@
using System;
+using System.Collections.Generic;
+using System.Text;
using System.Threading.Tasks;
-using Volo.Abp.Application.Services;
using Zzz.DTOs.Dic;
using Zzz.DTOs.Public;
namespace Zzz.Dic
{
- public interface IDicAppService: IApplicationService
+ public interface IDicAppService
{
Task CreateAsync(CreateDataDictionaryDto input);
Task UpdateAsync(UpdataDataDictionaryDto input);
-
- Task GetListAsync(string name, int skipCount = 0, int maxResultCount = 10);
-
- Task GetListDetailAsync(Guid id);
-
- Task CreateDetailAsync(CreateDataDictionaryDetailDto input);
-
- Task UpdateDetailAsync(UpdataDataDictionaryDetailDto input);
-
- Task DeleteAsync(Guid id, Guid? itemId);
}
}
diff --git a/content/aspnetcore/src/Zzz.Application/Jobs/Helpers/CronTypeHelper.cs b/content/aspnetcore/src/Zzz.Application.Contracts/Jobs/CronType.cs
similarity index 97%
rename from content/aspnetcore/src/Zzz.Application/Jobs/Helpers/CronTypeHelper.cs
rename to content/aspnetcore/src/Zzz.Application.Contracts/Jobs/CronType.cs
index 238cddd6..e898e13e 100644
--- a/content/aspnetcore/src/Zzz.Application/Jobs/Helpers/CronTypeHelper.cs
+++ b/content/aspnetcore/src/Zzz.Application.Contracts/Jobs/CronType.cs
@@ -1,12 +1,14 @@
using Hangfire;
using System;
+using System.Collections.Generic;
+using System.Text;
namespace Zzz.Jobs
{
///
/// Cron类型
///
- public static class CronTypeHelper
+ public static class CronType
{
///
/// 周期性为分钟的任务
diff --git a/content/aspnetcore/src/Zzz.Application.Contracts/Publics/IPublicApiAppService.cs b/content/aspnetcore/src/Zzz.Application.Contracts/Publics/IPublicApiAppService.cs
deleted file mode 100644
index 9af2c06b..00000000
--- a/content/aspnetcore/src/Zzz.Application.Contracts/Publics/IPublicApiAppService.cs
+++ /dev/null
@@ -1,13 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
-using System.Threading.Tasks;
-using Volo.Abp.Application.Services;
-
-namespace Zzz.Publics
-{
- public interface IPublicApiAppService : IApplicationService
- {
- Task TestAsync(string msg);
- }
-}
diff --git a/content/aspnetcore/src/Zzz.Application.Contracts/Users/ILoginAppService.cs b/content/aspnetcore/src/Zzz.Application.Contracts/Users/ILoginAppService.cs
index c612e344..80159beb 100644
--- a/content/aspnetcore/src/Zzz.Application.Contracts/Users/ILoginAppService.cs
+++ b/content/aspnetcore/src/Zzz.Application.Contracts/Users/ILoginAppService.cs
@@ -1,11 +1,13 @@
-using System.Threading.Tasks;
-using Volo.Abp.Application.Services;
+using System;
+using System.Collections.Generic;
+using System.Text;
+using System.Threading.Tasks;
using Zzz.DTOs.Public;
using Zzz.DTOs.Users;
namespace Zzz.Users
{
- public interface ILoginAppService: IApplicationService
+ public interface ILoginAppService
{
Task PostAsync(LoginInputDto input);
}
diff --git a/content/aspnetcore/src/Zzz.Application.Contracts/Zzz.Application.Contracts.csproj b/content/aspnetcore/src/Zzz.Application.Contracts/Zzz.Application.Contracts.csproj
index f7a06a91..ec6aacac 100644
--- a/content/aspnetcore/src/Zzz.Application.Contracts/Zzz.Application.Contracts.csproj
+++ b/content/aspnetcore/src/Zzz.Application.Contracts/Zzz.Application.Contracts.csproj
@@ -1,9 +1,9 @@
-
+
- netstandard2.1
+ netstandard2.0
Zzz
@@ -29,7 +29,7 @@
-
+
diff --git a/content/aspnetcore/src/Zzz.Application/Dic/DataDicManager.cs b/content/aspnetcore/src/Zzz.Application/Dic/DataDicManager.cs
new file mode 100644
index 00000000..d8bc85c3
--- /dev/null
+++ b/content/aspnetcore/src/Zzz.Application/Dic/DataDicManager.cs
@@ -0,0 +1,30 @@
+using Microsoft.EntityFrameworkCore;
+using System;
+using System.Linq;
+using System.Threading.Tasks;
+using Volo.Abp;
+using Volo.Abp.Domain.Repositories;
+
+namespace Zzz.Dic
+{
+ public class DataDicManager : IDataDicManager
+ {
+ private readonly IRepository _dataDictionaryRepository;
+
+ public DataDicManager(IRepository dataDictionaryRepository)
+ {
+ _dataDictionaryRepository = dataDictionaryRepository;
+ }
+
+ public async Task FindAsync(string name, string label)
+ {
+ Check.NotNullOrEmpty(name, nameof(name));
+ Check.NotNullOrEmpty(label, nameof(label));
+ var entity = await _dataDictionaryRepository.Include(e => e.DataDictionaryDetails).Where(e => e.Name == name.Trim()).FirstOrDefaultAsync();
+ if (entity == null) throw new BusinessException("Dic is Null");
+ var entityDetail= entity.DataDictionaryDetails.Find(e => e.Label == label.Trim());
+ if(entityDetail==null) throw new BusinessException("DicDetail is Null");
+ return entityDetail.Value;
+ }
+ }
+}
diff --git a/content/aspnetcore/src/Zzz.Application/Dic/DicAppService.cs b/content/aspnetcore/src/Zzz.Application/Dic/DicAppService.cs
index 0e332bc8..4ddc2420 100644
--- a/content/aspnetcore/src/Zzz.Application/Dic/DicAppService.cs
+++ b/content/aspnetcore/src/Zzz.Application/Dic/DicAppService.cs
@@ -1,6 +1,5 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.EntityFrameworkCore;
-using Microsoft.Extensions.Caching.Distributed;
using Microsoft.Extensions.Localization;
using Swashbuckle.AspNetCore.Annotations;
using System;
@@ -10,7 +9,6 @@ using System.Text;
using System.Threading.Tasks;
using Volo.Abp.Application.Dtos;
using Volo.Abp.Application.Services;
-using Volo.Abp.Caching;
using Volo.Abp.DependencyInjection;
using Volo.Abp.Domain.Repositories;
using Volo.Abp.Guids;
@@ -30,14 +28,12 @@ namespace Zzz.Dic
private readonly ICurrentUser _currentUser;
private readonly IGuidGenerator _guidGenerator;
private readonly IStringLocalizer _localizer;
-
public DicAppService(IRepository dataDictionaryRepository, ICurrentUser currentUser, IGuidGenerator guidGenerator, IStringLocalizer localizer)
{
_dataDictionaryRepository = dataDictionaryRepository;
_currentUser = currentUser;
_guidGenerator = guidGenerator;
_localizer = localizer;
-
}
[SwaggerOperation(summary: "获取字典列表", Tags = new[] { "字典" })]
@@ -136,7 +132,5 @@ namespace Zzz.Dic
await _dataDictionaryRepository.UpdateAsync(entity);
return ApiResult.Ok();
}
-
-
}
}
diff --git a/content/aspnetcore/src/Zzz.Application/Jobs/TestJob.cs b/content/aspnetcore/src/Zzz.Application/Jobs/TestJob.cs
index 67654a02..999cb537 100644
--- a/content/aspnetcore/src/Zzz.Application/Jobs/TestJob.cs
+++ b/content/aspnetcore/src/Zzz.Application/Jobs/TestJob.cs
@@ -1,4 +1,8 @@
using Serilog;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
using System.Threading.Tasks;
namespace Zzz.Jobs
diff --git a/content/aspnetcore/src/Zzz.Application/Publics/PublicApiAppService.cs b/content/aspnetcore/src/Zzz.Application/Publics/PublicApiAppService.cs
deleted file mode 100644
index 884420f4..00000000
--- a/content/aspnetcore/src/Zzz.Application/Publics/PublicApiAppService.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using Volo.Abp;
-using Volo.Abp.Application.Services;
-
-namespace Zzz.Publics
-{
- [RemoteService]
- public class PublicApiAppService : ApplicationService, IPublicApiAppService
- {
- public async Task TestAsync(string msg)
- {
- await Task.CompletedTask;
- return msg;
- }
- }
-}
diff --git a/content/aspnetcore/src/Zzz.Application/Users/LoginAppService.cs b/content/aspnetcore/src/Zzz.Application/Users/LoginAppService.cs
index 8223b86c..c4747377 100644
--- a/content/aspnetcore/src/Zzz.Application/Users/LoginAppService.cs
+++ b/content/aspnetcore/src/Zzz.Application/Users/LoginAppService.cs
@@ -23,7 +23,6 @@ namespace Zzz.Users
private readonly IdentityUserManager _userManager;
private readonly JwtOptions _jwtOptions;
private readonly Microsoft.AspNetCore.Identity.SignInManager _signInManager;
-
public LoginAppService(
IdentityUserManager userManager,
IOptionsSnapshot jwtOptions,
@@ -39,6 +38,7 @@ namespace Zzz.Users
public async Task PostAsync(LoginInputDto input)
{
var result = await _signInManager.PasswordSignInAsync(input.Name, input.Password, false, true);
+
if (!result.Succeeded) return ApiResult.Error();
var user = await _userManager.FindByNameAsync(input.Name);
diff --git a/content/aspnetcore/src/Zzz.Application/Zzz.Application.csproj b/content/aspnetcore/src/Zzz.Application/Zzz.Application.csproj
index f3b122a5..deb5dbe4 100644
--- a/content/aspnetcore/src/Zzz.Application/Zzz.Application.csproj
+++ b/content/aspnetcore/src/Zzz.Application/Zzz.Application.csproj
@@ -1,39 +1,41 @@
-
-
-
- net5.0
- Zzz
-
-
-
- bin\Debug\net5.0\Zzz.Application.xml
- bin\Debug\net5.0\
-
-
-
- bin\Debug\net5.0\
- bin\Debug\net5.0\Zzz.Application.xml
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+ net5.0
+ Zzz
+
+
+
+ bin\Debug\net5.0\Zzz.Application.xml
+ bin\Debug\net5.0\
+
+
+
+ bin\Debug\net5.0\
+ bin\Debug\net5.0\Zzz.Application.xml
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/content/aspnetcore/src/Zzz.Application/ZzzApplicationModule.cs b/content/aspnetcore/src/Zzz.Application/ZzzApplicationModule.cs
index 4a1a57fa..0886f8de 100644
--- a/content/aspnetcore/src/Zzz.Application/ZzzApplicationModule.cs
+++ b/content/aspnetcore/src/Zzz.Application/ZzzApplicationModule.cs
@@ -1,12 +1,7 @@
-using Hangfire;
-using Hangfire.Redis;
-using Microsoft.Extensions.DependencyInjection;
-using System;
-using Volo.Abp.Account;
+using Volo.Abp.Account;
using Volo.Abp.AutoMapper;
-using Volo.Abp.BackgroundJobs;
+using Volo.Abp.BackgroundJobs.Hangfire;
using Volo.Abp.FeatureManagement;
-using Volo.Abp.Hangfire;
using Volo.Abp.Identity;
using Volo.Abp.Modularity;
using Volo.Abp.PermissionManagement;
@@ -22,13 +17,13 @@ namespace Zzz
typeof(AbpPermissionManagementApplicationModule),
typeof(AbpTenantManagementApplicationModule),
typeof(AbpFeatureManagementApplicationModule),
+ typeof(AbpBackgroundJobsHangfireModule),
typeof(EasyAbp.Abp.SettingUi.SettingUiApplicationModule)
)]
public class ZzzApplicationModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
-
Configure(options =>
{
options.AddMaps();
diff --git a/content/aspnetcore/src/Zzz.DbMigrator/appsettings.json b/content/aspnetcore/src/Zzz.DbMigrator/appsettings.json
index 0bc68ed3..bd43da62 100644
--- a/content/aspnetcore/src/Zzz.DbMigrator/appsettings.json
+++ b/content/aspnetcore/src/Zzz.DbMigrator/appsettings.json
@@ -1,6 +1,6 @@
{
"ConnectionStrings": {
- "Default": "Data Source=mysql.platform.development.yhglobal.cn;Database=zzz.db;uid=root;pwd=mysql@dmin;charset=utf8mb4;Allow User Variables=true;AllowLoadLocalInfile=true"
+ "Default": "Data Source=mysql.Zzz.cn;Database=Zzz.db;uid=root;pwd=123456;charset=utf8mb4;Allow User Variables=true;AllowLoadLocalInfile=true"
},
"IdentityServer": {
"Clients": {
diff --git a/content/aspnetcore/src/Zzz.Domain.Shared/Zzz.Domain.Shared.csproj b/content/aspnetcore/src/Zzz.Domain.Shared/Zzz.Domain.Shared.csproj
index d3efe45d..74ada94f 100644
--- a/content/aspnetcore/src/Zzz.Domain.Shared/Zzz.Domain.Shared.csproj
+++ b/content/aspnetcore/src/Zzz.Domain.Shared/Zzz.Domain.Shared.csproj
@@ -3,7 +3,7 @@
- netstandard2.1
+ netstandard2.0
Zzz
true
diff --git a/content/aspnetcore/src/Zzz.Domain.Shared/ZzzDomainSharedModule.cs b/content/aspnetcore/src/Zzz.Domain.Shared/ZzzDomainSharedModule.cs
index e4fd6d60..e3854d41 100644
--- a/content/aspnetcore/src/Zzz.Domain.Shared/ZzzDomainSharedModule.cs
+++ b/content/aspnetcore/src/Zzz.Domain.Shared/ZzzDomainSharedModule.cs
@@ -1,4 +1,5 @@
-using Volo.Abp.AuditLogging;
+using Zzz.Localization;
+using Volo.Abp.AuditLogging;
using Volo.Abp.BackgroundJobs;
using Volo.Abp.FeatureManagement;
using Volo.Abp.Identity;
@@ -11,7 +12,8 @@ using Volo.Abp.SettingManagement;
using Volo.Abp.TenantManagement;
using Volo.Abp.Validation.Localization;
using Volo.Abp.VirtualFileSystem;
-using Zzz.Localization;
+using Zzz.Options;
+using Microsoft.Extensions.DependencyInjection;
namespace Zzz
{
diff --git a/content/aspnetcore/src/Zzz.Domain/Dic/Aggregates/DataDictionary.cs b/content/aspnetcore/src/Zzz.Domain/Dic/DataDictionary.cs
similarity index 94%
rename from content/aspnetcore/src/Zzz.Domain/Dic/Aggregates/DataDictionary.cs
rename to content/aspnetcore/src/Zzz.Domain/Dic/DataDictionary.cs
index 48a32b38..17fa4d26 100644
--- a/content/aspnetcore/src/Zzz.Domain/Dic/Aggregates/DataDictionary.cs
+++ b/content/aspnetcore/src/Zzz.Domain/Dic/DataDictionary.cs
@@ -7,7 +7,6 @@ using System.Linq;
using System.ComponentModel.DataAnnotations.Schema;
using Volo.Abp.Data;
using System.ComponentModel.DataAnnotations;
-using Zzz.Dic.MaxLengths;
namespace Zzz.Dic
{
@@ -17,13 +16,13 @@ namespace Zzz.Dic
/// 名称
///
[Required]
- [MaxLength(DataDictionaryMaxLength.Name)]
+ [MaxLength(64)]
public virtual string Name { get; private set; }
///
/// 描述
///
- [MaxLength(DataDictionaryMaxLength.Description)]
+ [MaxLength(256)]
public virtual string Description { get; set; }
[Required]
diff --git a/content/aspnetcore/src/Zzz.Domain/Dic/Aggregates/DataDictionaryDetail.cs b/content/aspnetcore/src/Zzz.Domain/Dic/DataDictionaryDetail.cs
similarity index 91%
rename from content/aspnetcore/src/Zzz.Domain/Dic/Aggregates/DataDictionaryDetail.cs
rename to content/aspnetcore/src/Zzz.Domain/Dic/DataDictionaryDetail.cs
index 91646d31..15a1c284 100644
--- a/content/aspnetcore/src/Zzz.Domain/Dic/Aggregates/DataDictionaryDetail.cs
+++ b/content/aspnetcore/src/Zzz.Domain/Dic/DataDictionaryDetail.cs
@@ -6,7 +6,6 @@ using System.Text;
using System.Threading.Tasks;
using Volo.Abp;
using Volo.Abp.Domain.Entities;
-using Zzz.Dic.MaxLengths;
namespace Zzz.Dic
{
@@ -16,14 +15,14 @@ namespace Zzz.Dic
/// 名称
///
[Required]
- [MaxLength(DataDictionaryMaxLength.Label)]
+ [MaxLength(64)]
public virtual string Label { get; protected set; }
///
/// 名称
///
[Required]
- [MaxLength(DataDictionaryMaxLength.Value)]
+ [MaxLength(64)]
public virtual string Value { get; protected set; }
[Required]
diff --git a/content/aspnetcore/src/Zzz.Domain/Dic/MaxLengths/DataDictionaryMaxLength.cs b/content/aspnetcore/src/Zzz.Domain/Dic/MaxLengths/DataDictionaryMaxLength.cs
deleted file mode 100644
index 43368d47..00000000
--- a/content/aspnetcore/src/Zzz.Domain/Dic/MaxLengths/DataDictionaryMaxLength.cs
+++ /dev/null
@@ -1,13 +0,0 @@
-namespace Zzz.Dic.MaxLengths
-{
- public class DataDictionaryMaxLength
- {
- public const int Name = 64;
-
- public const int Description = 256;
-
- public const int Label = 64;
-
- public const int Value = 64;
- }
-}
diff --git a/content/aspnetcore/src/Zzz.Domain/IdentityServer/IdentityServerDataSeedContributor.cs b/content/aspnetcore/src/Zzz.Domain/IdentityServer/IdentityServerDataSeedContributor.cs
new file mode 100644
index 00000000..f0b842cb
--- /dev/null
+++ b/content/aspnetcore/src/Zzz.Domain/IdentityServer/IdentityServerDataSeedContributor.cs
@@ -0,0 +1,324 @@
+using System;
+using System.Collections.Generic;
+using System.Threading.Tasks;
+using IdentityServer4.Models;
+using Microsoft.Extensions.Configuration;
+using Volo.Abp.Authorization.Permissions;
+using Volo.Abp.Data;
+using Volo.Abp.DependencyInjection;
+using Volo.Abp.Guids;
+using Volo.Abp.IdentityServer.ApiResources;
+using Volo.Abp.IdentityServer.ApiScopes;
+using Volo.Abp.IdentityServer.Clients;
+using Volo.Abp.IdentityServer.IdentityResources;
+using Volo.Abp.MultiTenancy;
+using Volo.Abp.PermissionManagement;
+using Volo.Abp.Uow;
+using ApiResource = Volo.Abp.IdentityServer.ApiResources.ApiResource;
+using ApiScope = Volo.Abp.IdentityServer.ApiScopes.ApiScope;
+using Client = Volo.Abp.IdentityServer.Clients.Client;
+
+namespace Zzz.IdentityServer
+{
+ //public class IdentityServerDataSeedContributor : IDataSeedContributor, ITransientDependency
+ //{
+ // private readonly IApiResourceRepository _apiResourceRepository;
+ // private readonly IApiScopeRepository _apiScopeRepository;
+ // private readonly IClientRepository _clientRepository;
+ // private readonly IIdentityResourceDataSeeder _identityResourceDataSeeder;
+ // private readonly IGuidGenerator _guidGenerator;
+ // private readonly IPermissionDataSeeder _permissionDataSeeder;
+ // private readonly IConfiguration _configuration;
+ // private readonly ICurrentTenant _currentTenant;
+
+ // public IdentityServerDataSeedContributor(
+ // IClientRepository clientRepository,
+ // IApiResourceRepository apiResourceRepository,
+ // IApiScopeRepository apiScopeRepository,
+ // IIdentityResourceDataSeeder identityResourceDataSeeder,
+ // IGuidGenerator guidGenerator,
+ // IPermissionDataSeeder permissionDataSeeder,
+ // IConfiguration configuration,
+ // ICurrentTenant currentTenant)
+ // {
+ // _clientRepository = clientRepository;
+ // _apiResourceRepository = apiResourceRepository;
+ // _apiScopeRepository = apiScopeRepository;
+ // _identityResourceDataSeeder = identityResourceDataSeeder;
+ // _guidGenerator = guidGenerator;
+ // _permissionDataSeeder = permissionDataSeeder;
+ // _configuration = configuration;
+ // _currentTenant = currentTenant;
+ // }
+
+ // [UnitOfWork]
+ // public virtual async Task SeedAsync(DataSeedContext context)
+ // {
+ // using (_currentTenant.Change(context?.TenantId))
+ // {
+ // await _identityResourceDataSeeder.CreateStandardResourcesAsync();
+ // await CreateApiResourcesAsync();
+ // await CreateApiScopesAsync();
+ // await CreateClientsAsync();
+ // }
+ // }
+
+ // private async Task CreateApiScopesAsync()
+ // {
+ // await CreateApiScopeAsync("Zzz");
+ // }
+
+ // private async Task CreateApiResourcesAsync()
+ // {
+ // var commonApiUserClaims = new[]
+ // {
+ // "email",
+ // "email_verified",
+ // "name",
+ // "phone_number",
+ // "phone_number_verified",
+ // "role"
+ // };
+
+ // await CreateApiResourceAsync("Zzz", commonApiUserClaims);
+ // }
+
+ // private async Task CreateApiResourceAsync(string name, IEnumerable claims)
+ // {
+ // var apiResource = await _apiResourceRepository.FindByNameAsync(name);
+ // if (apiResource == null)
+ // {
+ // apiResource = await _apiResourceRepository.InsertAsync(
+ // new ApiResource(
+ // _guidGenerator.Create(),
+ // name,
+ // name + " API"
+ // ),
+ // autoSave: true
+ // );
+ // }
+
+ // foreach (var claim in claims)
+ // {
+ // if (apiResource.FindClaim(claim) == null)
+ // {
+ // apiResource.AddUserClaim(claim);
+ // }
+ // }
+
+ // return await _apiResourceRepository.UpdateAsync(apiResource);
+ // }
+
+ // private async Task CreateApiScopeAsync(string name)
+ // {
+ // var apiScope = await _apiScopeRepository.GetByNameAsync(name);
+ // if (apiScope == null)
+ // {
+ // apiScope = await _apiScopeRepository.InsertAsync(
+ // new ApiScope(
+ // _guidGenerator.Create(),
+ // name,
+ // name + " API"
+ // ),
+ // autoSave: true
+ // );
+ // }
+
+ // return apiScope;
+ // }
+
+ // private async Task CreateClientsAsync()
+ // {
+ // var commonScopes = new[]
+ // {
+ // "email",
+ // "openid",
+ // "profile",
+ // "role",
+ // "phone",
+ // "address",
+ // "Zzz"
+ // };
+
+ // var configurationSection = _configuration.GetSection("IdentityServer:Clients");
+
+ // //Web Client
+ // var webClientId = configurationSection["Zzz_Web:ClientId"];
+ // if (!webClientId.IsNullOrWhiteSpace())
+ // {
+ // var webClientRootUrl = configurationSection["Zzz_Web:RootUrl"].EnsureEndsWith('/');
+
+ // /* Zzz_Web client is only needed if you created a tiered
+ // * solution. Otherwise, you can delete this client. */
+
+ // await CreateClientAsync(
+ // name: webClientId,
+ // scopes: commonScopes,
+ // grantTypes: new[] { "hybrid" },
+ // secret: (configurationSection["Zzz_Web:ClientSecret"] ?? "1q2w3e*").Sha256(),
+ // redirectUri: $"{webClientRootUrl}signin-oidc",
+ // postLogoutRedirectUri: $"{webClientRootUrl}signout-callback-oidc",
+ // frontChannelLogoutUri: $"{webClientRootUrl}Account/FrontChannelLogout",
+ // corsOrigins: new[] { webClientRootUrl.RemovePostFix("/") }
+ // );
+ // }
+
+ // //Console Test / Angular Client
+ // var consoleAndAngularClientId = configurationSection["Zzz_App:ClientId"];
+ // if (!consoleAndAngularClientId.IsNullOrWhiteSpace())
+ // {
+ // var webClientRootUrl = configurationSection["Zzz_App:RootUrl"]?.TrimEnd('/');
+
+ // await CreateClientAsync(
+ // name: consoleAndAngularClientId,
+ // scopes: commonScopes,
+ // grantTypes: new[] { "password", "client_credentials", "authorization_code" },
+ // secret: (configurationSection["Zzz_App:ClientSecret"] ?? "1q2w3e*").Sha256(),
+ // requireClientSecret: false,
+ // redirectUri: webClientRootUrl,
+ // postLogoutRedirectUri: webClientRootUrl,
+ // corsOrigins: new[] { webClientRootUrl.RemovePostFix("/") }
+ // );
+ // }
+
+ // // Blazor Client
+ // var blazorClientId = configurationSection["Zzz_Blazor:ClientId"];
+ // if (!blazorClientId.IsNullOrWhiteSpace())
+ // {
+ // var blazorRootUrl = configurationSection["Zzz_Blazor:RootUrl"].TrimEnd('/');
+
+ // await CreateClientAsync(
+ // name: blazorClientId,
+ // scopes: commonScopes,
+ // grantTypes: new[] { "authorization_code" },
+ // secret: configurationSection["Zzz_Blazor:ClientSecret"]?.Sha256(),
+ // requireClientSecret: false,
+ // redirectUri: $"{blazorRootUrl}/authentication/login-callback",
+ // postLogoutRedirectUri: $"{blazorRootUrl}/authentication/logout-callback",
+ // corsOrigins: new[] { blazorRootUrl.RemovePostFix("/") }
+ // );
+ // }
+
+ // // Swagger Client
+ // var swaggerClientId = configurationSection["Zzz_Swagger:ClientId"];
+ // if (!swaggerClientId.IsNullOrWhiteSpace())
+ // {
+ // var swaggerRootUrl = configurationSection["Zzz_Swagger:RootUrl"].TrimEnd('/');
+
+ // await CreateClientAsync(
+ // name: swaggerClientId,
+ // scopes: commonScopes,
+ // grantTypes: new[] { "authorization_code" },
+ // secret: configurationSection["Zzz_Swagger:ClientSecret"]?.Sha256(),
+ // requireClientSecret: false,
+ // redirectUri: $"{swaggerRootUrl}/swagger/oauth2-redirect.html",
+ // corsOrigins: new[] { swaggerRootUrl.RemovePostFix("/") }
+ // );
+ // }
+ // }
+
+ // private async Task CreateClientAsync(
+ // string name,
+ // IEnumerable scopes,
+ // IEnumerable grantTypes,
+ // string secret = null,
+ // string redirectUri = null,
+ // string postLogoutRedirectUri = null,
+ // string frontChannelLogoutUri = null,
+ // bool requireClientSecret = true,
+ // bool requirePkce = false,
+ // IEnumerable permissions = null,
+ // IEnumerable corsOrigins = null)
+ // {
+ // var client = await _clientRepository.FindByClientIdAsync(name);
+ // if (client == null)
+ // {
+ // client = await _clientRepository.InsertAsync(
+ // new Client(
+ // _guidGenerator.Create(),
+ // name
+ // )
+ // {
+ // ClientName = name,
+ // ProtocolType = "oidc",
+ // Description = name,
+ // AlwaysIncludeUserClaimsInIdToken = true,
+ // AllowOfflineAccess = true,
+ // AbsoluteRefreshTokenLifetime = 31536000, //365 days
+ // AccessTokenLifetime = 31536000, //365 days
+ // AuthorizationCodeLifetime = 300,
+ // IdentityTokenLifetime = 300,
+ // RequireConsent = false,
+ // FrontChannelLogoutUri = frontChannelLogoutUri,
+ // RequireClientSecret = requireClientSecret,
+ // RequirePkce = requirePkce
+ // },
+ // autoSave: true
+ // );
+ // }
+
+ // foreach (var scope in scopes)
+ // {
+ // if (client.FindScope(scope) == null)
+ // {
+ // client.AddScope(scope);
+ // }
+ // }
+
+ // foreach (var grantType in grantTypes)
+ // {
+ // if (client.FindGrantType(grantType) == null)
+ // {
+ // client.AddGrantType(grantType);
+ // }
+ // }
+
+ // if (!secret.IsNullOrEmpty())
+ // {
+ // if (client.FindSecret(secret) == null)
+ // {
+ // client.AddSecret(secret);
+ // }
+ // }
+
+ // if (redirectUri != null)
+ // {
+ // if (client.FindRedirectUri(redirectUri) == null)
+ // {
+ // client.AddRedirectUri(redirectUri);
+ // }
+ // }
+
+ // if (postLogoutRedirectUri != null)
+ // {
+ // if (client.FindPostLogoutRedirectUri(postLogoutRedirectUri) == null)
+ // {
+ // client.AddPostLogoutRedirectUri(postLogoutRedirectUri);
+ // }
+ // }
+
+ // if (permissions != null)
+ // {
+ // await _permissionDataSeeder.SeedAsync(
+ // ClientPermissionValueProvider.ProviderName,
+ // name,
+ // permissions,
+ // null
+ // );
+ // }
+
+ // if (corsOrigins != null)
+ // {
+ // foreach (var origin in corsOrigins)
+ // {
+ // if (!origin.IsNullOrWhiteSpace() && client.FindCorsOrigin(origin) == null)
+ // {
+ // client.AddCorsOrigin(origin);
+ // }
+ // }
+ // }
+
+ // return await _clientRepository.UpdateAsync(client);
+ // }
+ //}
+}
diff --git a/content/aspnetcore/src/Zzz.Domain/Users/Aggregates/AppUser.cs b/content/aspnetcore/src/Zzz.Domain/Users/AppUser.cs
similarity index 100%
rename from content/aspnetcore/src/Zzz.Domain/Users/Aggregates/AppUser.cs
rename to content/aspnetcore/src/Zzz.Domain/Users/AppUser.cs
diff --git a/content/aspnetcore/src/Zzz.Domain/Zzz.Domain.csproj b/content/aspnetcore/src/Zzz.Domain/Zzz.Domain.csproj
index b5ffef0a..de628c3f 100644
--- a/content/aspnetcore/src/Zzz.Domain/Zzz.Domain.csproj
+++ b/content/aspnetcore/src/Zzz.Domain/Zzz.Domain.csproj
@@ -1,29 +1,29 @@
-
+
-
- net5.0
- Zzz
-
+
+ net5.0
+ Zzz
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/content/aspnetcore/src/Zzz.Domain/ZzzDomainModule.cs b/content/aspnetcore/src/Zzz.Domain/ZzzDomainModule.cs
index 36e70591..8b371c68 100644
--- a/content/aspnetcore/src/Zzz.Domain/ZzzDomainModule.cs
+++ b/content/aspnetcore/src/Zzz.Domain/ZzzDomainModule.cs
@@ -1,8 +1,9 @@
-using Microsoft.Extensions.Caching.Distributed;
-using System;
+using Microsoft.Extensions.DependencyInjection;
+using Microsoft.Extensions.DependencyInjection.Extensions;
+using Zzz.MultiTenancy;
using Volo.Abp.AuditLogging;
using Volo.Abp.BackgroundJobs;
-using Volo.Abp.Caching;
+using Volo.Abp.Emailing;
using Volo.Abp.FeatureManagement;
using Volo.Abp.Identity;
using Volo.Abp.IdentityServer;
@@ -12,7 +13,6 @@ using Volo.Abp.PermissionManagement.Identity;
using Volo.Abp.PermissionManagement.IdentityServer;
using Volo.Abp.SettingManagement;
using Volo.Abp.TenantManagement;
-using Zzz.MultiTenancy;
namespace Zzz
{
@@ -27,8 +27,8 @@ namespace Zzz
typeof(AbpPermissionManagementDomainIdentityServerModule),
typeof(AbpSettingManagementDomainModule),
typeof(AbpTenantManagementDomainModule),
- typeof(EasyAbp.Abp.SettingUi.SettingUiDomainModule),
- typeof(AbpCachingModule)
+ typeof(AbpEmailingModule),
+ typeof(EasyAbp.Abp.SettingUi.SettingUiDomainModule)
)]
public class ZzzDomainModule : AbpModule
{
@@ -39,11 +39,6 @@ namespace Zzz
options.IsEnabled = MultiTenancyConsts.IsEnabled;
});
- // 设置全局默认缓存时间
- //Configure(option =>
- //{
- // option.GlobalCacheEntryOptions.SetSlidingExpiration(TimeSpan.FromSeconds(7200));
- //});
}
}
}
diff --git a/content/aspnetcore/src/Zzz.EntityFrameworkCore/Repository/Users/IUserDapperRepository.cs b/content/aspnetcore/src/Zzz.EntityFrameworkCore/Repository/IUserDapperRepository.cs
similarity index 100%
rename from content/aspnetcore/src/Zzz.EntityFrameworkCore/Repository/Users/IUserDapperRepository.cs
rename to content/aspnetcore/src/Zzz.EntityFrameworkCore/Repository/IUserDapperRepository.cs
diff --git a/content/aspnetcore/src/Zzz.EntityFrameworkCore/Repository/Users/UserDapperRepository.cs b/content/aspnetcore/src/Zzz.EntityFrameworkCore/Repository/UserDapperRepository.cs
similarity index 100%
rename from content/aspnetcore/src/Zzz.EntityFrameworkCore/Repository/Users/UserDapperRepository.cs
rename to content/aspnetcore/src/Zzz.EntityFrameworkCore/Repository/UserDapperRepository.cs
diff --git a/content/aspnetcore/src/Zzz.HttpApi.Client/Zzz.HttpApi.Client.csproj b/content/aspnetcore/src/Zzz.HttpApi.Client/Zzz.HttpApi.Client.csproj
index 6b5ce295..007d38ef 100644
--- a/content/aspnetcore/src/Zzz.HttpApi.Client/Zzz.HttpApi.Client.csproj
+++ b/content/aspnetcore/src/Zzz.HttpApi.Client/Zzz.HttpApi.Client.csproj
@@ -3,7 +3,7 @@
- netstandard2.1
+ netstandard2.0
Zzz
diff --git a/content/aspnetcore/src/Zzz.HttpApi.Client/ZzzHttpApiClientModule.cs b/content/aspnetcore/src/Zzz.HttpApi.Client/ZzzHttpApiClientModule.cs
index 43e8cddb..80ba8ef5 100644
--- a/content/aspnetcore/src/Zzz.HttpApi.Client/ZzzHttpApiClientModule.cs
+++ b/content/aspnetcore/src/Zzz.HttpApi.Client/ZzzHttpApiClientModule.cs
@@ -18,7 +18,7 @@ namespace Zzz
)]
public class ZzzHttpApiClientModule : AbpModule
{
- public const string RemoteServiceName = "Zzz";
+ public const string RemoteServiceName = "Default";
public override void ConfigureServices(ServiceConfigurationContext context)
{
diff --git a/content/aspnetcore/src/Zzz.HttpApi.Host/Controllers/HomeController.cs b/content/aspnetcore/src/Zzz.HttpApi.Host/Controllers/HomeController.cs
index cdaca8ac..2f59d077 100644
--- a/content/aspnetcore/src/Zzz.HttpApi.Host/Controllers/HomeController.cs
+++ b/content/aspnetcore/src/Zzz.HttpApi.Host/Controllers/HomeController.cs
@@ -1,12 +1,12 @@
using Microsoft.AspNetCore.Mvc;
using Volo.Abp.AspNetCore.Mvc;
using Volo.Abp.Users;
-using Zzz.Dic;
namespace Zzz.Controllers
{
public class HomeController : AbpController
{
+
public ActionResult Index()
{
return Redirect("~/swagger/index.html");
diff --git a/content/aspnetcore/src/Zzz.HttpApi.Host/Extensions/RecurringJobsExtensions.cs b/content/aspnetcore/src/Zzz.HttpApi.Host/Extensions/RecurringJobsExtensions.cs
index 4c7860ff..6d2ff71d 100644
--- a/content/aspnetcore/src/Zzz.HttpApi.Host/Extensions/RecurringJobsExtensions.cs
+++ b/content/aspnetcore/src/Zzz.HttpApi.Host/Extensions/RecurringJobsExtensions.cs
@@ -1,7 +1,10 @@
using Hangfire;
-using Microsoft.Extensions.DependencyInjection;
using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
using Zzz.Jobs;
+using Microsoft.Extensions.DependencyInjection;
namespace Zzz.Extensions
{
@@ -9,8 +12,8 @@ namespace Zzz.Extensions
{
public static void CreateRecurringJob(this IServiceProvider service)
{
- var job = service.GetService();
- RecurringJob.AddOrUpdate("测试Job", () => job.ExecuteAsync(), CronTypeHelper.Minute(1));
+ //var job = service.GetService();
+ //RecurringJob.AddOrUpdate("测试Job", () => job.ExecuteAsync(), CronType.Minute(1));
}
}
}
diff --git a/content/aspnetcore/src/Zzz.HttpApi.Host/Program.cs b/content/aspnetcore/src/Zzz.HttpApi.Host/Program.cs
index b1252776..508537a7 100644
--- a/content/aspnetcore/src/Zzz.HttpApi.Host/Program.cs
+++ b/content/aspnetcore/src/Zzz.HttpApi.Host/Program.cs
@@ -1,6 +1,5 @@
using System;
using Microsoft.AspNetCore.Hosting;
-using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Hosting;
using Serilog;
using Serilog.Events;
@@ -31,10 +30,6 @@ namespace Zzz
internal static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
- .ConfigureAppConfiguration((context, builder) => {
- // 配置nacos
- builder.AddNacosConfiguration(builder.Build().GetSection("NacosConfig"));
- })
.ConfigureWebHostDefaults(webBuilder =>
{
webBuilder.UseStartup();
diff --git a/content/aspnetcore/src/Zzz.HttpApi.Host/Properties/launchSettings.json b/content/aspnetcore/src/Zzz.HttpApi.Host/Properties/launchSettings.json
index f0150bde..88d55d0f 100644
--- a/content/aspnetcore/src/Zzz.HttpApi.Host/Properties/launchSettings.json
+++ b/content/aspnetcore/src/Zzz.HttpApi.Host/Properties/launchSettings.json
@@ -1,5 +1,20 @@
{
+ "iisSettings": {
+ "windowsAuthentication": false,
+ "anonymousAuthentication": true,
+ "iisExpress": {
+ "applicationUrl": "http://localhost:5010/",
+ "sslPort": 44359
+ }
+ },
"profiles": {
+ "IIS Express": {
+ "commandName": "IISExpress",
+ "launchBrowser": true,
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ },
"Zzz.HttpApi.Host": {
"commandName": "Project",
"launchBrowser": false,
@@ -7,7 +22,7 @@
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
- "applicationUrl": "http://localhost:50000/"
+ "applicationUrl": "http://localhost:5010/"
}
}
}
\ No newline at end of file
diff --git a/content/aspnetcore/src/Zzz.HttpApi.Host/Zzz.HttpApi.Host.csproj b/content/aspnetcore/src/Zzz.HttpApi.Host/Zzz.HttpApi.Host.csproj
index ca415c73..61ae8e7b 100644
--- a/content/aspnetcore/src/Zzz.HttpApi.Host/Zzz.HttpApi.Host.csproj
+++ b/content/aspnetcore/src/Zzz.HttpApi.Host/Zzz.HttpApi.Host.csproj
@@ -25,12 +25,8 @@
-
-
-
-
-
-
+
+
diff --git a/content/aspnetcore/src/Zzz.HttpApi.Host/ZzzHttpApiHostModule.cs b/content/aspnetcore/src/Zzz.HttpApi.Host/ZzzHttpApiHostModule.cs
index 8a91bcf5..896a17c5 100644
--- a/content/aspnetcore/src/Zzz.HttpApi.Host/ZzzHttpApiHostModule.cs
+++ b/content/aspnetcore/src/Zzz.HttpApi.Host/ZzzHttpApiHostModule.cs
@@ -1,45 +1,47 @@
-using Hangfire;
-using Hangfire.Redis;
-using Microsoft.AspNetCore.Authentication.JwtBearer;
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Net.Http;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Cors;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
-using Microsoft.IdentityModel.Tokens;
+using Zzz.EntityFrameworkCore;
+using Zzz.MultiTenancy;
+using Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic;
using Microsoft.OpenApi.Models;
-using Serilog;
-using Swashbuckle.AspNetCore.SwaggerUI;
-using System;
-using System.Collections.Generic;
-using System.IO;
-using System.Linq;
-using System.Text;
using Volo.Abp;
using Volo.Abp.Account.Web;
using Volo.Abp.AspNetCore.Authentication.JwtBearer;
-using Volo.Abp.AspNetCore.ExceptionHandling;
using Volo.Abp.AspNetCore.MultiTenancy;
using Volo.Abp.AspNetCore.Mvc;
using Volo.Abp.AspNetCore.Mvc.UI.Bundling;
-using Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic;
using Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Bundling;
using Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared;
using Volo.Abp.AspNetCore.Serilog;
-using Volo.Abp.Auditing;
using Volo.Abp.Autofac;
-using Volo.Abp.BackgroundJobs;
-using Volo.Abp.Hangfire;
using Volo.Abp.Localization;
using Volo.Abp.Modularity;
-using Volo.Abp.Settings;
using Volo.Abp.Swashbuckle;
using Volo.Abp.UI.Navigation.Urls;
using Volo.Abp.VirtualFileSystem;
-using Zzz.EntityFrameworkCore;
+using Zzz.Options;
+using Microsoft.AspNetCore.Authentication.JwtBearer;
+using Microsoft.IdentityModel.Tokens;
+using System.Text;
+using Volo.Abp.AspNetCore.ExceptionHandling;
+using Serilog;
using Zzz.Extensions;
+using Hangfire;
+using Hangfire.Redis;
using Zzz.Extensions.Filters;
-using Zzz.Options;
+using Volo.Abp.Auditing;
+using Volo.Abp.BackgroundJobs;
+using Swashbuckle.AspNetCore.SwaggerUI;
+using Volo.Abp.Json;
+using Volo.Abp.Settings;
namespace Zzz
{
@@ -53,8 +55,7 @@ namespace Zzz
typeof(AbpAspNetCoreAuthenticationJwtBearerModule),
typeof(AbpAccountWebIdentityServerModule),
typeof(AbpAspNetCoreSerilogModule),
- typeof(AbpSwashbuckleModule),
- typeof(AbpHangfireModule)
+ typeof(AbpSwashbuckleModule)
)]
public class ZzzHttpApiHostModule : AbpModule
{
@@ -62,7 +63,6 @@ namespace Zzz
public override void OnPreApplicationInitialization(ApplicationInitializationContext context)
{
- // 应用程序初始化的时候注册hangfire
var app = context.GetApplicationBuilder();
app.ApplicationServices.GetService().Get(LocalizationSettingNames.DefaultLanguage).DefaultValue = "zh-Hans";
app.UseHangfireDashboard("/hangfire", new DashboardOptions()
@@ -75,6 +75,8 @@ namespace Zzz
public override void ConfigureServices(ServiceConfigurationContext context)
{
var configuration = context.Services.GetConfiguration();
+ var hostingEnvironment = context.Services.GetHostingEnvironment();
+ ConfigureJson();
ConfigureOptions(context);
ConfigureBundles();
ConfigureUrls(configuration);
@@ -86,75 +88,15 @@ namespace Zzz
ConfigureSwaggerServices(context);
ConfigureAbpExcepotions(context);
ConfigureCache(context.Services);
- ConfigureAuditLog();
ConfigureHangfire(context.Services);
+ ConfigureAuditLog();
}
- public override void OnApplicationInitialization(ApplicationInitializationContext context)
- {
- var app = context.GetApplicationBuilder();
- var env = context.GetEnvironment();
-
- if (env.IsDevelopment())
- {
- app.UseDeveloperExceptionPage();
- }
-
- app.UseAbpRequestLocalization();
-
- if (!env.IsDevelopment())
- {
- app.UseErrorPage();
- }
-
- app.UseCorrelationId();
- app.UseVirtualFiles();
- app.UseRouting();
- app.UseCors(DefaultCorsPolicyName);
- app.UseAuthentication();
- app.UseJwtTokenMiddleware();
-
- //if (MultiTenancyConsts.IsEnabled)
- //{
- // app.UseMultiTenancy();
- //}
-
- //app.UseIdentityServer();
- app.UseAuthorization();
-
- app.UseSwagger();
- app.UseAbpSwaggerUI(c =>
- {
- c.SwaggerEndpoint("/swagger/v1/swagger.json", "Zzz API");
- c.DefaultModelExpandDepth(-2);
- c.DocExpansion(DocExpansion.None);
- });
-
- app.UseAuditing();
- app.UseAbpSerilogEnrichers();
- app.UseSerilogRequestLogging(opts =>
- {
- opts.EnrichDiagnosticContext = SerilogToEsExtensions.EnrichFromRequest;
- });
- app.UseConfiguredEndpoints();
-
-
- }
-
- #region 私有方法
- ///
- /// 配置options
- ///
- ///
- private void ConfigureOptions(ServiceConfigurationContext context)
+ private void ConfigureJson()
{
- context.Services.Configure(context.Services.GetConfiguration().GetSection("Jwt"));
+ // 时间格式化
+ Configure(options => options.DefaultDateTimeFormat = "yyyy-MM-dd HH:mm:ss");
}
-
-
- ///
- /// 审计日志
- ///
private void ConfigureAuditLog()
{
Configure(options =>
@@ -163,10 +105,6 @@ namespace Zzz
});
}
- ///
- /// Redis缓存
- ///
- ///
private void ConfigureCache(IServiceCollection services)
{
var redisConnectionString = services.GetConfiguration().GetSection("Cache:Redis:ConnectionString").Value;
@@ -177,11 +115,30 @@ namespace Zzz
});
}
-
///
- /// 异常处理
+ /// 注入Hangfire服务
///
- ///
+ ///
+ private void ConfigureHangfire(IServiceCollection services)
+ {
+ Configure(options =>
+ {
+ options.IsJobExecutionEnabled = false;
+ });
+
+ var redisConnectionString = services.GetConfiguration().GetSection("Cache:Redis:ConnectionString").Value;
+ var redisDatabaseId = Convert.ToInt32(services.GetConfiguration().GetSection("Cache:Redis:DatabaseId").Value);
+
+ // 启用Hangfire 并使用Redis作为持久化
+ services.AddHangfire(config =>
+ {
+ config.UseRedisStorage(redisConnectionString, new RedisStorageOptions { Db = redisDatabaseId });
+ });
+
+ JobStorage.Current = new RedisStorage(redisConnectionString, new RedisStorageOptions { Db = redisDatabaseId });
+
+ }
+
private void ConfigureAbpExcepotions(ServiceConfigurationContext context)
{
// dev环境显示异常具体信息
@@ -194,7 +151,18 @@ namespace Zzz
}
}
-
+ private void ConfigureOptions(ServiceConfigurationContext context)
+ {
+ //var configuration = context.Services.GetConfiguration();
+ //Configure(options =>
+ //{
+ // options.Audience = configuration.GetValue("Jwt:Audience");
+ // options.Issuer = configuration.GetValue("Jwt:Audience");
+ // options.SecurityKey = configuration.GetValue("Jwt:SecurityKey");
+ // options.ExpirationTime = configuration.GetValue("Jwt:ExpirationTime");
+ //});
+ context.Services.Configure(context.Services.GetConfiguration().GetSection("Jwt"));
+ }
private void ConfigureBundles()
{
Configure(options =>
@@ -206,7 +174,6 @@ namespace Zzz
});
}
-
private void ConfigureUrls(IConfiguration configuration)
{
Configure(options =>
@@ -215,21 +182,30 @@ namespace Zzz
});
}
- ///
- /// 配置虚拟文件系统
- ///
- ///
private void ConfigureVirtualFileSystem(ServiceConfigurationContext context)
{
- Configure(options =>
+ var hostingEnvironment = context.Services.GetHostingEnvironment();
+
+ if (hostingEnvironment.IsDevelopment())
{
- options.FileSets.AddEmbedded();
- });
+ Configure(options =>
+ {
+ options.FileSets.ReplaceEmbeddedByPhysical(
+ Path.Combine(hostingEnvironment.ContentRootPath,
+ $"..{Path.DirectorySeparatorChar}Zzz.Domain.Shared"));
+ options.FileSets.ReplaceEmbeddedByPhysical(
+ Path.Combine(hostingEnvironment.ContentRootPath,
+ $"..{Path.DirectorySeparatorChar}Zzz.Domain"));
+ options.FileSets.ReplaceEmbeddedByPhysical(
+ Path.Combine(hostingEnvironment.ContentRootPath,
+ $"..{Path.DirectorySeparatorChar}Zzz.Application.Contracts"));
+ options.FileSets.ReplaceEmbeddedByPhysical(
+ Path.Combine(hostingEnvironment.ContentRootPath,
+ $"..{Path.DirectorySeparatorChar}Zzz.Application"));
+ });
+ }
}
- ///
- /// 映射Controller
- ///
private void ConfigureConventionalControllers()
{
Configure(options =>
@@ -238,11 +214,6 @@ namespace Zzz
});
}
- ///
- /// 配置JWT
- ///
- ///
- ///
private void ConfigureJwtAuthentication(ServiceConfigurationContext context, IConfiguration configuration)
{
context.Services.AddAuthentication(options =>
@@ -267,17 +238,13 @@ namespace Zzz
});
}
- ///
- /// 配置SwaggerUI
- ///
- ///
private static void ConfigureSwaggerServices(ServiceConfigurationContext context)
{
context.Services.AddSwaggerGen(
options =>
{
options.SwaggerDoc("v1", new OpenApiInfo { Title = "Zzz API", Version = "v1" });
-
+
options.DocInclusionPredicate((docName, description) => true);
options.EnableAnnotations();// 启用注解
// 加载xml文件,不然不会显示备注
@@ -305,7 +272,7 @@ namespace Zzz
{
new OpenApiSecurityScheme
{
- Reference = new OpenApiReference { Type = ReferenceType.SecurityScheme, Id = "Bearer"
+ Reference = new OpenApiReference { Type = ReferenceType.SecurityScheme, Id = "Bearer"
}
},
new List()
@@ -314,9 +281,6 @@ namespace Zzz
});
}
- ///
- ///配置本地化
- ///
private void ConfigureLocalization()
{
Configure(options =>
@@ -326,11 +290,6 @@ namespace Zzz
});
}
- ///
- /// 配置跨域
- ///
- ///
- ///
private void ConfigureCors(ServiceConfigurationContext context, IConfiguration configuration)
{
context.Services.AddCors(options =>
@@ -354,32 +313,58 @@ namespace Zzz
}
- ///
- /// 配置Hangfire服务
- ///
- ///
- private void ConfigureHangfire(IServiceCollection services)
+
+
+
+ public override void OnApplicationInitialization(ApplicationInitializationContext context)
{
- Configure(options =>
+ var app = context.GetApplicationBuilder();
+ var env = context.GetEnvironment();
+
+ if (env.IsDevelopment())
{
- options.IsJobExecutionEnabled = false;
- });
+ app.UseDeveloperExceptionPage();
+ }
- var redisConnectionString = services.GetConfiguration().GetSection("Cache:Redis:ConnectionString").Value;
- var redisDatabaseId = Convert.ToInt32(services.GetConfiguration().GetSection("Cache:Redis:DatabaseId").Value);
+ app.UseAbpRequestLocalization();
- // 启用Hangfire 并使用Redis作为持久化
- services.AddHangfire(config =>
+ if (!env.IsDevelopment())
{
- config.UseRedisStorage(redisConnectionString, new RedisStorageOptions { Db = redisDatabaseId });
- });
+ app.UseErrorPage();
+ }
- JobStorage.Current = new RedisStorage(redisConnectionString, new RedisStorageOptions { Db = redisDatabaseId });
- }
+ app.UseCorrelationId();
+ app.UseVirtualFiles();
+ app.UseRouting();
+ app.UseCors(DefaultCorsPolicyName);
+ app.UseAuthentication();
+ app.UseJwtTokenMiddleware();
+ //if (MultiTenancyConsts.IsEnabled)
+ //{
+ // app.UseMultiTenancy();
+ //}
+ //app.UseIdentityServer();
+ app.UseAuthorization();
- #endregion
+ app.UseSwagger();
+ app.UseAbpSwaggerUI(c =>
+ {
+ c.SwaggerEndpoint("/swagger/v1/swagger.json", "Zzz API");
+ c.DefaultModelExpandDepth(-2);
+ c.DocExpansion(DocExpansion.None);
+ });
+
+ app.UseAuditing();
+ //app.UseAbpSerilogEnrichers();
+ app.UseSerilogRequestLogging(opts =>
+ {
+ opts.EnrichDiagnosticContext = SerilogToEsExtensions.EnrichFromRequest;
+ });
+ app.UseConfiguredEndpoints();
+
+ }
}
}
diff --git a/content/aspnetcore/src/Zzz.HttpApi.Host/appsettings.Ali.json b/content/aspnetcore/src/Zzz.HttpApi.Host/appsettings.Ali.json
deleted file mode 100644
index f9b76d7b..00000000
--- a/content/aspnetcore/src/Zzz.HttpApi.Host/appsettings.Ali.json
+++ /dev/null
@@ -1,61 +0,0 @@
-{
- "App": {
- "SelfUrl": "https://localhost:44363",
- "CorsOrigins": "https://*.Zzz.com,http://localhost:8083,http://localhost:8081,https://localhost:44307,"
- },
- "StringEncryption": {
- "DefaultPassPhrase": "MY2bTgp2iaHUEp66"
- },
- "Settings": {
- "Abp.Mailing.Smtp.Host": "127.0.0.1",
- "Abp.Mailing.Smtp.Port": "25",
- "Abp.Mailing.Smtp.UserName": "",
- "Abp.Mailing.Smtp.Password": "",
- "Abp.Mailing.Smtp.Domain": "",
- "Abp.Mailing.Smtp.EnableSsl": "false",
- "Abp.Mailing.Smtp.UseDefaultCredentials": "true",
- "Abp.Mailing.DefaultFromAddress": "noreply@abp.io",
- "Abp.Mailing.DefaultFromDisplayName": "ABP application"
- },
- "Serilog": {
- "MinimumLevel": {
- "Default": "Information",
- "Override": {
- "Microsoft": "Information",
- "Microsoft.AspNetCore": "Information",
- "System": "Warning",
- "Microsoft.Hosting.Lifetime": "Information",
- "Microsoft.AspNetCore.Routing": "Information",
- "Microsoft.AspNetCore.Hosting.Diagnostics": "Error"
- }
- }
- },
- "ConnectionStrings": {
- "Default": "Data Source=mysql.development.cn;Database=zzz.db;uid=root;pwd=mysql@;charset=utf8mb4;Allow User Variables=true;AllowLoadLocalInfile=true"
- },
- "Cache": {
- "Redis": {
- "ConnectionString": "redis.cn,password=OD5VbzIuAWsHOZV5ncYx9xaDsAMsKXn7",
- "DatabaseId": 231
- }
- },
- "AuthServer": {
- "Authority": "https://localhost:44363",
- "RequireHttpsMetadata": "false"
- },
- "Jwt": {
- "Audience": "http://localhost:5010", //ͻ˱ʶ
- "SecurityKey": "dzehzRz9a8asdfasfdadfasdfasdfafsdadfasbasdf=",
- "Issuer": "Zzz", //ǩ
- "ExpirationTime": 2 //ʱ hour
- },
- "LogToElasticSearch": {
- "Enabled": "true",
- "ElasticSearch": {
- "Url": "http://es.cn",
- "IndexFormat": "Zzz.admin.api.dev-{0:yyyy.MM.dd}",
- "UserName": "Zzz",
- "Password": "TCYobkZxWu0ELYZY"
- }
- }
-}
\ No newline at end of file
diff --git a/content/aspnetcore/src/Zzz.HttpApi.Host/appsettings.Development.json b/content/aspnetcore/src/Zzz.HttpApi.Host/appsettings.Development.json
new file mode 100644
index 00000000..3430ea29
--- /dev/null
+++ b/content/aspnetcore/src/Zzz.HttpApi.Host/appsettings.Development.json
@@ -0,0 +1,44 @@
+{
+ "Serilog": {
+ "MinimumLevel": {
+ "Default": "Information",
+ "Override": {
+ "Microsoft": "Information",
+ "Microsoft.AspNetCore": "Information",
+ "System": "Warning",
+ "Microsoft.Hosting.Lifetime": "Information",
+ "Microsoft.AspNetCore.Routing": "Information",
+ "Microsoft.AspNetCore.Hosting.Diagnostics": "Error"
+ }
+ }
+ },
+ "ConnectionStrings": {
+ "Default": "Data Source=mysql.development.yhglobal.cn;Database=zzz.db;uid=root;pwd=mysql@dmin;charset=utf8mb4;Allow User Variables=true;AllowLoadLocalInfile=true"
+ },
+ "Cache": {
+ "Redis": {
+ "ConnectionString": "redis.development.yhglobal.cn,password=OD5VbzIuAWsHOZV5ncYx9xaDsAMsKXn7",
+ "DatabaseId": 205
+ }
+ },
+ "AuthServer": {
+ "Authority": "https://localhost:44363",
+ "RequireHttpsMetadata": "false"
+ },
+ "Jwt": {
+ "Audience": "http://localhost:5010", //ͻ˱ʶ
+ //"SecurityKey": "dzehzRz9a8+8TAGbqKHP9ITdRmZdOpJWQRsFb8oz50A=",
+ "SecurityKey": "dzehzRz9a8asdfasfdadfasdfasdfafsdadfasbasdf=",
+ "Issuer": "Zzz", //ǩ
+ "ExpirationTime": 2 //ʱ hour
+ },
+ "LogToElasticSearch": {
+ "Enabled": "true",
+ "ElasticSearch": {
+ "Url": "http://es.platform.Zzz.cn",
+ "IndexFormat": "Zzz.api.dev-{0:yyyy.MM.dd}",
+ "UserName": "Zzz",
+ "Password": "TCYobkZxWu0ELYZY"
+ }
+ }
+}
diff --git a/content/aspnetcore/src/Zzz.HttpApi.Host/appsettings.Staging.json b/content/aspnetcore/src/Zzz.HttpApi.Host/appsettings.Staging.json
deleted file mode 100644
index f9b76d7b..00000000
--- a/content/aspnetcore/src/Zzz.HttpApi.Host/appsettings.Staging.json
+++ /dev/null
@@ -1,61 +0,0 @@
-{
- "App": {
- "SelfUrl": "https://localhost:44363",
- "CorsOrigins": "https://*.Zzz.com,http://localhost:8083,http://localhost:8081,https://localhost:44307,"
- },
- "StringEncryption": {
- "DefaultPassPhrase": "MY2bTgp2iaHUEp66"
- },
- "Settings": {
- "Abp.Mailing.Smtp.Host": "127.0.0.1",
- "Abp.Mailing.Smtp.Port": "25",
- "Abp.Mailing.Smtp.UserName": "",
- "Abp.Mailing.Smtp.Password": "",
- "Abp.Mailing.Smtp.Domain": "",
- "Abp.Mailing.Smtp.EnableSsl": "false",
- "Abp.Mailing.Smtp.UseDefaultCredentials": "true",
- "Abp.Mailing.DefaultFromAddress": "noreply@abp.io",
- "Abp.Mailing.DefaultFromDisplayName": "ABP application"
- },
- "Serilog": {
- "MinimumLevel": {
- "Default": "Information",
- "Override": {
- "Microsoft": "Information",
- "Microsoft.AspNetCore": "Information",
- "System": "Warning",
- "Microsoft.Hosting.Lifetime": "Information",
- "Microsoft.AspNetCore.Routing": "Information",
- "Microsoft.AspNetCore.Hosting.Diagnostics": "Error"
- }
- }
- },
- "ConnectionStrings": {
- "Default": "Data Source=mysql.development.cn;Database=zzz.db;uid=root;pwd=mysql@;charset=utf8mb4;Allow User Variables=true;AllowLoadLocalInfile=true"
- },
- "Cache": {
- "Redis": {
- "ConnectionString": "redis.cn,password=OD5VbzIuAWsHOZV5ncYx9xaDsAMsKXn7",
- "DatabaseId": 231
- }
- },
- "AuthServer": {
- "Authority": "https://localhost:44363",
- "RequireHttpsMetadata": "false"
- },
- "Jwt": {
- "Audience": "http://localhost:5010", //ͻ˱ʶ
- "SecurityKey": "dzehzRz9a8asdfasfdadfasdfasdfafsdadfasbasdf=",
- "Issuer": "Zzz", //ǩ
- "ExpirationTime": 2 //ʱ hour
- },
- "LogToElasticSearch": {
- "Enabled": "true",
- "ElasticSearch": {
- "Url": "http://es.cn",
- "IndexFormat": "Zzz.admin.api.dev-{0:yyyy.MM.dd}",
- "UserName": "Zzz",
- "Password": "TCYobkZxWu0ELYZY"
- }
- }
-}
\ No newline at end of file
diff --git a/content/aspnetcore/src/Zzz.HttpApi.Host/appsettings.json b/content/aspnetcore/src/Zzz.HttpApi.Host/appsettings.json
index f9b76d7b..597d4da5 100644
--- a/content/aspnetcore/src/Zzz.HttpApi.Host/appsettings.json
+++ b/content/aspnetcore/src/Zzz.HttpApi.Host/appsettings.json
@@ -16,46 +16,5 @@
"Abp.Mailing.Smtp.UseDefaultCredentials": "true",
"Abp.Mailing.DefaultFromAddress": "noreply@abp.io",
"Abp.Mailing.DefaultFromDisplayName": "ABP application"
- },
- "Serilog": {
- "MinimumLevel": {
- "Default": "Information",
- "Override": {
- "Microsoft": "Information",
- "Microsoft.AspNetCore": "Information",
- "System": "Warning",
- "Microsoft.Hosting.Lifetime": "Information",
- "Microsoft.AspNetCore.Routing": "Information",
- "Microsoft.AspNetCore.Hosting.Diagnostics": "Error"
- }
- }
- },
- "ConnectionStrings": {
- "Default": "Data Source=mysql.development.cn;Database=zzz.db;uid=root;pwd=mysql@;charset=utf8mb4;Allow User Variables=true;AllowLoadLocalInfile=true"
- },
- "Cache": {
- "Redis": {
- "ConnectionString": "redis.cn,password=OD5VbzIuAWsHOZV5ncYx9xaDsAMsKXn7",
- "DatabaseId": 231
- }
- },
- "AuthServer": {
- "Authority": "https://localhost:44363",
- "RequireHttpsMetadata": "false"
- },
- "Jwt": {
- "Audience": "http://localhost:5010", //ͻ˱ʶ
- "SecurityKey": "dzehzRz9a8asdfasfdadfasdfasdfafsdadfasbasdf=",
- "Issuer": "Zzz", //ǩ
- "ExpirationTime": 2 //ʱ hour
- },
- "LogToElasticSearch": {
- "Enabled": "true",
- "ElasticSearch": {
- "Url": "http://es.cn",
- "IndexFormat": "Zzz.admin.api.dev-{0:yyyy.MM.dd}",
- "UserName": "Zzz",
- "Password": "TCYobkZxWu0ELYZY"
- }
}
-}
\ No newline at end of file
+}
diff --git a/content/aspnetcore/src/Zzz.PublicApi.Host/App_Data/logs/logs20210324.txt b/content/aspnetcore/src/Zzz.PublicApi.Host/App_Data/logs/logs20210324.txt
deleted file mode 100644
index 76ffbd84..00000000
--- a/content/aspnetcore/src/Zzz.PublicApi.Host/App_Data/logs/logs20210324.txt
+++ /dev/null
@@ -1,39552 +0,0 @@
-2021-03-24 11:37:33.088 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest.
-2021-03-24 11:37:33.259 +08:00 [INF] Loaded ABP modules:
-2021-03-24 11:37:33.261 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule
-2021-03-24 11:37:33.263 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule
-2021-03-24 11:37:33.266 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule
-2021-03-24 11:37:33.272 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule
-2021-03-24 11:37:33.273 +08:00 [INF] - Volo.Abp.Data.AbpDataModule
-2021-03-24 11:37:33.274 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule
-2021-03-24 11:37:33.275 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule
-2021-03-24 11:37:33.275 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule
-2021-03-24 11:37:33.276 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule
-2021-03-24 11:37:33.277 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule
-2021-03-24 11:37:33.277 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule
-2021-03-24 11:37:33.278 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule
-2021-03-24 11:37:33.278 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule
-2021-03-24 11:37:33.279 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule
-2021-03-24 11:37:33.281 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule
-2021-03-24 11:37:33.282 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule
-2021-03-24 11:37:33.283 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule
-2021-03-24 11:37:33.284 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule
-2021-03-24 11:37:33.285 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule
-2021-03-24 11:37:33.286 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule
-2021-03-24 11:37:33.287 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule
-2021-03-24 11:37:33.288 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule
-2021-03-24 11:37:33.293 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule
-2021-03-24 11:37:33.294 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule
-2021-03-24 11:37:33.297 +08:00 [INF] - Volo.Abp.UI.AbpUiModule
-2021-03-24 11:37:33.299 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule
-2021-03-24 11:37:33.300 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule
-2021-03-24 11:37:33.302 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule
-2021-03-24 11:37:33.303 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule
-2021-03-24 11:37:33.304 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule
-2021-03-24 11:37:33.305 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule
-2021-03-24 11:37:33.306 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule
-2021-03-24 11:37:33.307 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule
-2021-03-24 11:37:33.308 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule
-2021-03-24 11:37:33.309 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule
-2021-03-24 11:37:33.311 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule
-2021-03-24 11:37:33.312 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule
-2021-03-24 11:37:33.313 +08:00 [INF] - Zzz.PublicApi.ZzzPublicApiModule
-2021-03-24 11:37:33.950 +08:00 [INF] Initialized all ABP modules.
-2021-03-24 11:37:33.989 +08:00 [INF] Now listening on: http://localhost:50001
-2021-03-24 11:37:33.991 +08:00 [INF] Application started. Press Ctrl+C to shut down.
-2021-03-24 11:37:33.992 +08:00 [INF] Hosting environment: Development
-2021-03-24 11:37:33.993 +08:00 [INF] Content root path: E:\越海\【7】ERP\vnextbackendservices\aspnetcore\src\Zzz.PublicApi.Host
-2021-03-24 11:37:36.115 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/swagger/index.html - -
-2021-03-24 11:37:36.282 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/swagger/index.html - - - 200 - text/html;charset=utf-8 170.6617ms
-2021-03-24 11:37:36.631 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/swagger/v1/swagger.json - -
-2021-03-24 11:37:36.741 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 109.5661ms
-2021-03-24 11:41:27.193 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest.
-2021-03-24 11:41:27.349 +08:00 [INF] Loaded ABP modules:
-2021-03-24 11:41:27.350 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule
-2021-03-24 11:41:27.350 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule
-2021-03-24 11:41:27.351 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule
-2021-03-24 11:41:27.352 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule
-2021-03-24 11:41:27.352 +08:00 [INF] - Volo.Abp.Data.AbpDataModule
-2021-03-24 11:41:27.353 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule
-2021-03-24 11:41:27.355 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule
-2021-03-24 11:41:27.356 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule
-2021-03-24 11:41:27.356 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule
-2021-03-24 11:41:27.357 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule
-2021-03-24 11:41:27.359 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule
-2021-03-24 11:41:27.360 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule
-2021-03-24 11:41:27.360 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule
-2021-03-24 11:41:27.361 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule
-2021-03-24 11:41:27.361 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule
-2021-03-24 11:41:27.362 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule
-2021-03-24 11:41:27.363 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule
-2021-03-24 11:41:27.363 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule
-2021-03-24 11:41:27.364 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule
-2021-03-24 11:41:27.365 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule
-2021-03-24 11:41:27.366 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule
-2021-03-24 11:41:27.367 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule
-2021-03-24 11:41:27.367 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule
-2021-03-24 11:41:27.369 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule
-2021-03-24 11:41:27.370 +08:00 [INF] - Volo.Abp.UI.AbpUiModule
-2021-03-24 11:41:27.371 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule
-2021-03-24 11:41:27.371 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule
-2021-03-24 11:41:27.372 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule
-2021-03-24 11:41:27.381 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule
-2021-03-24 11:41:27.383 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule
-2021-03-24 11:41:27.383 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule
-2021-03-24 11:41:27.384 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule
-2021-03-24 11:41:27.385 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule
-2021-03-24 11:41:27.386 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule
-2021-03-24 11:41:27.387 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule
-2021-03-24 11:41:27.388 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule
-2021-03-24 11:41:27.391 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule
-2021-03-24 11:41:27.392 +08:00 [INF] - Zzz.PublicApi.ZzzPublicApiModule
-2021-03-24 11:41:27.919 +08:00 [INF] Initialized all ABP modules.
-2021-03-24 11:41:27.952 +08:00 [INF] Now listening on: http://localhost:50001
-2021-03-24 11:41:27.954 +08:00 [INF] Application started. Press Ctrl+C to shut down.
-2021-03-24 11:41:27.956 +08:00 [INF] Hosting environment: Development
-2021-03-24 11:41:27.960 +08:00 [INF] Content root path: E:\越海\【7】ERP\vnextbackendservices\aspnetcore\src\Zzz.PublicApi.Host
-2021-03-24 11:41:29.773 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/swagger/index.html - -
-2021-03-24 11:41:29.945 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/swagger/index.html - - - 200 - text/html;charset=utf-8 175.0986ms
-2021-03-24 11:41:30.193 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/swagger/v1/swagger.json - -
-2021-03-24 11:41:30.275 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 81.9635ms
-2021-03-24 11:41:33.159 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/api/Sample/config - -
-2021-03-24 11:41:33.199 +08:00 [INF] Executing endpoint 'Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host)'
-2021-03-24 11:41:33.277 +08:00 [INF] Route matched with {action = "GetConfig", controller = "Sample", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] GetConfig() on controller Zzz.PublicApi.Host.Controllers.SampleController (Zzz.PublicApi.Host).
-2021-03-24 11:41:33.323 +08:00 [INF] Executing OkObjectResult, writing value of type 'null'.
-2021-03-24 11:41:33.331 +08:00 [INF] Executed action Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host) in 44.5204ms
-2021-03-24 11:41:33.335 +08:00 [INF] Executed endpoint 'Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host)'
-2021-03-24 11:41:33.346 +08:00 [INF] HTTP GET /api/Sample/config responded 204 in 138.1024 ms
-2021-03-24 11:41:33.350 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/api/Sample/config - - - 204 0 - 191.3964ms
-2021-03-24 11:41:39.564 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/api/Sample/config - -
-2021-03-24 11:41:39.578 +08:00 [INF] Executing endpoint 'Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host)'
-2021-03-24 11:41:39.579 +08:00 [INF] Route matched with {action = "GetConfig", controller = "Sample", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] GetConfig() on controller Zzz.PublicApi.Host.Controllers.SampleController (Zzz.PublicApi.Host).
-2021-03-24 11:41:46.275 +08:00 [INF] Executing OkObjectResult, writing value of type 'null'.
-2021-03-24 11:41:46.278 +08:00 [INF] Executed action Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host) in 6696.3989ms
-2021-03-24 11:41:46.281 +08:00 [INF] Executed endpoint 'Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host)'
-2021-03-24 11:41:46.284 +08:00 [INF] HTTP GET /api/Sample/config responded 204 in 6705.0939 ms
-2021-03-24 11:41:46.288 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/api/Sample/config - - - 204 0 - 6723.0857ms
-2021-03-24 11:44:02.094 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/api/Sample/config - -
-2021-03-24 11:44:02.096 +08:00 [INF] Executing endpoint 'Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host)'
-2021-03-24 11:44:02.098 +08:00 [INF] Route matched with {action = "GetConfig", controller = "Sample", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] GetConfig() on controller Zzz.PublicApi.Host.Controllers.SampleController (Zzz.PublicApi.Host).
-2021-03-24 11:45:45.407 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest.
-2021-03-24 11:45:45.596 +08:00 [INF] Loaded ABP modules:
-2021-03-24 11:45:45.599 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule
-2021-03-24 11:45:45.603 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule
-2021-03-24 11:45:45.604 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule
-2021-03-24 11:45:45.605 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule
-2021-03-24 11:45:45.608 +08:00 [INF] - Volo.Abp.Data.AbpDataModule
-2021-03-24 11:45:45.609 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule
-2021-03-24 11:45:45.609 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule
-2021-03-24 11:45:45.610 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule
-2021-03-24 11:45:45.611 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule
-2021-03-24 11:45:45.612 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule
-2021-03-24 11:45:45.612 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule
-2021-03-24 11:45:45.613 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule
-2021-03-24 11:45:45.613 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule
-2021-03-24 11:45:45.614 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule
-2021-03-24 11:45:45.615 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule
-2021-03-24 11:45:45.618 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule
-2021-03-24 11:45:45.620 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule
-2021-03-24 11:45:45.621 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule
-2021-03-24 11:45:45.622 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule
-2021-03-24 11:45:45.623 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule
-2021-03-24 11:45:45.624 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule
-2021-03-24 11:45:45.625 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule
-2021-03-24 11:45:45.626 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule
-2021-03-24 11:45:45.627 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule
-2021-03-24 11:45:45.628 +08:00 [INF] - Volo.Abp.UI.AbpUiModule
-2021-03-24 11:45:45.629 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule
-2021-03-24 11:45:45.630 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule
-2021-03-24 11:45:45.631 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule
-2021-03-24 11:45:45.632 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule
-2021-03-24 11:45:45.634 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule
-2021-03-24 11:45:45.636 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule
-2021-03-24 11:45:45.639 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule
-2021-03-24 11:45:45.641 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule
-2021-03-24 11:45:45.649 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule
-2021-03-24 11:45:45.650 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule
-2021-03-24 11:45:45.655 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule
-2021-03-24 11:45:45.658 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule
-2021-03-24 11:45:45.659 +08:00 [INF] - Zzz.PublicApi.ZzzPublicApiModule
-2021-03-24 11:45:46.320 +08:00 [INF] Initialized all ABP modules.
-2021-03-24 11:45:46.358 +08:00 [INF] Now listening on: http://localhost:50001
-2021-03-24 11:45:46.360 +08:00 [INF] Application started. Press Ctrl+C to shut down.
-2021-03-24 11:45:46.363 +08:00 [INF] Hosting environment: Development
-2021-03-24 11:45:46.365 +08:00 [INF] Content root path: E:\越海\【7】ERP\vnextbackendservices\aspnetcore\src\Zzz.PublicApi.Host
-2021-03-24 11:45:48.301 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/swagger/index.html - -
-2021-03-24 11:45:48.443 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/swagger/index.html - - - 200 - text/html;charset=utf-8 144.6127ms
-2021-03-24 11:45:48.743 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/swagger/v1/swagger.json - -
-2021-03-24 11:45:48.828 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 84.8883ms
-2021-03-24 11:45:51.465 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/api/Sample/config - -
-2021-03-24 11:45:51.501 +08:00 [INF] Executing endpoint 'Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host)'
-2021-03-24 11:45:51.547 +08:00 [INF] Route matched with {action = "GetConfig", controller = "Sample", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] GetConfig() on controller Zzz.PublicApi.Host.Controllers.SampleController (Zzz.PublicApi.Host).
-2021-03-24 11:45:58.555 +08:00 [INF] Executing OkObjectResult, writing value of type 'System.String'.
-2021-03-24 11:45:58.563 +08:00 [INF] Executed action Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host) in 7007.3819ms
-2021-03-24 11:45:58.570 +08:00 [INF] Executed endpoint 'Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host)'
-2021-03-24 11:45:58.578 +08:00 [INF] HTTP GET /api/Sample/config responded 200 in 7070.6467 ms
-2021-03-24 11:45:58.582 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/api/Sample/config - - - 200 - text/plain;+charset=utf-8 7116.8151ms
-2021-03-24 11:57:45.157 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest.
-2021-03-24 11:57:45.332 +08:00 [INF] Loaded ABP modules:
-2021-03-24 11:57:45.334 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule
-2021-03-24 11:57:45.334 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule
-2021-03-24 11:57:45.335 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule
-2021-03-24 11:57:45.336 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule
-2021-03-24 11:57:45.337 +08:00 [INF] - Volo.Abp.Data.AbpDataModule
-2021-03-24 11:57:45.338 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule
-2021-03-24 11:57:45.339 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule
-2021-03-24 11:57:45.340 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule
-2021-03-24 11:57:45.341 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule
-2021-03-24 11:57:45.343 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule
-2021-03-24 11:57:45.344 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule
-2021-03-24 11:57:45.344 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule
-2021-03-24 11:57:45.345 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule
-2021-03-24 11:57:45.346 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule
-2021-03-24 11:57:45.347 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule
-2021-03-24 11:57:45.349 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule
-2021-03-24 11:57:45.349 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule
-2021-03-24 11:57:45.350 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule
-2021-03-24 11:57:45.352 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule
-2021-03-24 11:57:45.352 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule
-2021-03-24 11:57:45.353 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule
-2021-03-24 11:57:45.354 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule
-2021-03-24 11:57:45.355 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule
-2021-03-24 11:57:45.356 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule
-2021-03-24 11:57:45.357 +08:00 [INF] - Volo.Abp.UI.AbpUiModule
-2021-03-24 11:57:45.357 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule
-2021-03-24 11:57:45.358 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule
-2021-03-24 11:57:45.359 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule
-2021-03-24 11:57:45.363 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule
-2021-03-24 11:57:45.364 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule
-2021-03-24 11:57:45.365 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule
-2021-03-24 11:57:45.366 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule
-2021-03-24 11:57:45.368 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule
-2021-03-24 11:57:45.369 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule
-2021-03-24 11:57:45.374 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule
-2021-03-24 11:57:45.375 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule
-2021-03-24 11:57:45.383 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule
-2021-03-24 11:57:45.385 +08:00 [INF] - Zzz.PublicApi.ZzzPublicApiModule
-2021-03-24 11:57:45.931 +08:00 [INF] Initialized all ABP modules.
-2021-03-24 11:57:45.969 +08:00 [INF] Now listening on: http://localhost:50001
-2021-03-24 11:57:45.971 +08:00 [INF] Application started. Press Ctrl+C to shut down.
-2021-03-24 11:57:45.973 +08:00 [INF] Hosting environment: Development
-2021-03-24 11:57:45.975 +08:00 [INF] Content root path: E:\越海\【7】ERP\vnextbackendservices\aspnetcore\src\Zzz.PublicApi.Host
-2021-03-24 11:57:48.327 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/swagger/index.html - -
-2021-03-24 11:57:48.480 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/swagger/index.html - - - 200 - text/html;charset=utf-8 156.2602ms
-2021-03-24 11:57:48.737 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/swagger/v1/swagger.json - -
-2021-03-24 11:57:48.811 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 74.9621ms
-2021-03-24 11:58:04.850 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/api/Sample/write - -
-2021-03-24 11:58:05.043 +08:00 [ERR] An unhandled exception has occurred while executing the request.
-System.InvalidOperationException: The AuthorizationPolicy named: 'Policy_Write' was not found.
- at Microsoft.AspNetCore.Authorization.AuthorizationPolicy.CombineAsync(IAuthorizationPolicyProvider policyProvider, IEnumerable`1 authorizeData)
- at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context)
- at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context)
- at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext)
- at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider)
- at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context)
-2021-03-24 11:58:05.159 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/api/Sample/write - - - 500 - text/plain 309.0924ms
-2021-03-24 11:58:58.027 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest.
-2021-03-24 11:58:58.177 +08:00 [INF] Loaded ABP modules:
-2021-03-24 11:58:58.178 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule
-2021-03-24 11:58:58.179 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule
-2021-03-24 11:58:58.180 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule
-2021-03-24 11:58:58.181 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule
-2021-03-24 11:58:58.182 +08:00 [INF] - Volo.Abp.Data.AbpDataModule
-2021-03-24 11:58:58.183 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule
-2021-03-24 11:58:58.183 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule
-2021-03-24 11:58:58.184 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule
-2021-03-24 11:58:58.185 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule
-2021-03-24 11:58:58.185 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule
-2021-03-24 11:58:58.187 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule
-2021-03-24 11:58:58.188 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule
-2021-03-24 11:58:58.189 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule
-2021-03-24 11:58:58.190 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule
-2021-03-24 11:58:58.191 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule
-2021-03-24 11:58:58.191 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule
-2021-03-24 11:58:58.192 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule
-2021-03-24 11:58:58.193 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule
-2021-03-24 11:58:58.193 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule
-2021-03-24 11:58:58.194 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule
-2021-03-24 11:58:58.195 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule
-2021-03-24 11:58:58.195 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule
-2021-03-24 11:58:58.197 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule
-2021-03-24 11:58:58.198 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule
-2021-03-24 11:58:58.199 +08:00 [INF] - Volo.Abp.UI.AbpUiModule
-2021-03-24 11:58:58.200 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule
-2021-03-24 11:58:58.201 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule
-2021-03-24 11:58:58.202 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule
-2021-03-24 11:58:58.203 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule
-2021-03-24 11:58:58.212 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule
-2021-03-24 11:58:58.215 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule
-2021-03-24 11:58:58.218 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule
-2021-03-24 11:58:58.219 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule
-2021-03-24 11:58:58.220 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule
-2021-03-24 11:58:58.221 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule
-2021-03-24 11:58:58.222 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule
-2021-03-24 11:58:58.223 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule
-2021-03-24 11:58:58.225 +08:00 [INF] - Zzz.PublicApi.ZzzPublicApiModule
-2021-03-24 11:58:58.807 +08:00 [INF] Initialized all ABP modules.
-2021-03-24 11:58:58.843 +08:00 [INF] Now listening on: http://localhost:50001
-2021-03-24 11:58:58.845 +08:00 [INF] Application started. Press Ctrl+C to shut down.
-2021-03-24 11:58:58.847 +08:00 [INF] Hosting environment: Development
-2021-03-24 11:58:58.848 +08:00 [INF] Content root path: E:\越海\【7】ERP\vnextbackendservices\aspnetcore\src\Zzz.PublicApi.Host
-2021-03-24 11:59:00.820 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/swagger/index.html - -
-2021-03-24 11:59:00.953 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/swagger/index.html - - - 200 - text/html;charset=utf-8 134.9412ms
-2021-03-24 11:59:01.223 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/swagger/v1/swagger.json - -
-2021-03-24 11:59:01.287 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 63.6150ms
-2021-03-24 12:00:02.721 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/api/Sample/write - -
-2021-03-24 12:00:02.819 +08:00 [INF] Authorization failed. These requirements were not met:
-ClaimsAuthorizationRequirement:Claim.Type=scope and Claim.Value is one of the following values: (ZzzPublicApi.Write)
-2021-03-24 12:00:02.827 +08:00 [INF] AuthenticationScheme: Bearer was challenged.
-2021-03-24 12:00:02.828 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/api/Sample/write - - - 401 0 - 107.5084ms
-2021-03-24 12:00:06.641 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/api/Sample/config - -
-2021-03-24 12:00:06.648 +08:00 [INF] Executing endpoint 'Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host)'
-2021-03-24 12:00:06.718 +08:00 [INF] Route matched with {action = "GetConfig", controller = "Sample", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] GetConfig() on controller Zzz.PublicApi.Host.Controllers.SampleController (Zzz.PublicApi.Host).
-2021-03-24 12:00:06.771 +08:00 [INF] Executing OkObjectResult, writing value of type 'System.String'.
-2021-03-24 12:00:06.781 +08:00 [INF] Executed action Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host) in 51.2703ms
-2021-03-24 12:00:06.785 +08:00 [INF] Executed endpoint 'Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host)'
-2021-03-24 12:00:06.795 +08:00 [INF] HTTP GET /api/Sample/config responded 200 in 139.2285 ms
-2021-03-24 12:00:06.798 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/api/Sample/config - - - 200 - text/plain;+charset=utf-8 156.6683ms
-2021-03-24 12:07:52.357 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/api/Sample/write - -
-2021-03-24 12:07:52.362 +08:00 [INF] Authorization failed. These requirements were not met:
-ClaimsAuthorizationRequirement:Claim.Type=scope and Claim.Value is one of the following values: (ZzzPublicApi.Write)
-2021-03-24 12:07:52.366 +08:00 [INF] AuthenticationScheme: Bearer was challenged.
-2021-03-24 12:07:52.368 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/api/Sample/write - - - 401 0 - 11.1032ms
-2021-03-24 12:07:58.333 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/api/Sample/write - -
-2021-03-24 12:07:58.653 +08:00 [INF] Successfully validated the token.
-2021-03-24 12:07:58.659 +08:00 [INF] Authorization failed. These requirements were not met:
-ClaimsAuthorizationRequirement:Claim.Type=scope and Claim.Value is one of the following values: (ZzzPublicApi.Write)
-2021-03-24 12:07:58.663 +08:00 [INF] AuthenticationScheme: Bearer was forbidden.
-2021-03-24 12:07:58.666 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/api/Sample/write - - - 403 0 - 333.1838ms
-2021-03-24 12:10:25.279 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/api/Sample/read - -
-2021-03-24 12:10:25.282 +08:00 [INF] Authorization failed. These requirements were not met:
-ClaimsAuthorizationRequirement:Claim.Type=scope and Claim.Value is one of the following values: (ZzzPublicApi.Read)
-2021-03-24 12:10:25.284 +08:00 [INF] AuthenticationScheme: Bearer was challenged.
-2021-03-24 12:10:25.287 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/api/Sample/read - - - 401 0 - 7.3902ms
-2021-03-24 12:10:30.329 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/api/Sample/read - -
-2021-03-24 12:10:30.331 +08:00 [INF] Successfully validated the token.
-2021-03-24 12:10:30.335 +08:00 [INF] Authorization was successful.
-2021-03-24 12:10:30.337 +08:00 [INF] Executing endpoint 'Zzz.PublicApi.Host.Controllers.SampleController.ReadAsync (Zzz.PublicApi.Host)'
-2021-03-24 12:10:30.344 +08:00 [INF] Route matched with {action = "Read", controller = "Sample", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] ReadAsync() on controller Zzz.PublicApi.Host.Controllers.SampleController (Zzz.PublicApi.Host).
-2021-03-24 12:10:30.355 +08:00 [INF] Executing OkObjectResult, writing value of type 'System.String'.
-2021-03-24 12:10:30.357 +08:00 [INF] Executed action Zzz.PublicApi.Host.Controllers.SampleController.ReadAsync (Zzz.PublicApi.Host) in 3.3895ms
-2021-03-24 12:10:30.360 +08:00 [INF] Executed endpoint 'Zzz.PublicApi.Host.Controllers.SampleController.ReadAsync (Zzz.PublicApi.Host)'
-2021-03-24 12:10:30.361 +08:00 [INF] HTTP GET /api/Sample/read responded 200 in 24.3374 ms
-2021-03-24 12:10:30.363 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/api/Sample/read - - - 200 - text/plain;+charset=utf-8 34.2457ms
-2021-03-24 12:15:53.963 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest.
-2021-03-24 12:15:54.131 +08:00 [INF] Loaded ABP modules:
-2021-03-24 12:15:54.132 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule
-2021-03-24 12:15:54.133 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule
-2021-03-24 12:15:54.134 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule
-2021-03-24 12:15:54.134 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule
-2021-03-24 12:15:54.135 +08:00 [INF] - Volo.Abp.Data.AbpDataModule
-2021-03-24 12:15:54.135 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule
-2021-03-24 12:15:54.136 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule
-2021-03-24 12:15:54.137 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule
-2021-03-24 12:15:54.137 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule
-2021-03-24 12:15:54.138 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule
-2021-03-24 12:15:54.139 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule
-2021-03-24 12:15:54.140 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule
-2021-03-24 12:15:54.143 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule
-2021-03-24 12:15:54.143 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule
-2021-03-24 12:15:54.144 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule
-2021-03-24 12:15:54.145 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule
-2021-03-24 12:15:54.146 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule
-2021-03-24 12:15:54.147 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule
-2021-03-24 12:15:54.148 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule
-2021-03-24 12:15:54.149 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule
-2021-03-24 12:15:54.149 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule
-2021-03-24 12:15:54.150 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule
-2021-03-24 12:15:54.152 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule
-2021-03-24 12:15:54.153 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule
-2021-03-24 12:15:54.154 +08:00 [INF] - Volo.Abp.UI.AbpUiModule
-2021-03-24 12:15:54.155 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule
-2021-03-24 12:15:54.156 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule
-2021-03-24 12:15:54.158 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule
-2021-03-24 12:15:54.160 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule
-2021-03-24 12:15:54.162 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule
-2021-03-24 12:15:54.164 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule
-2021-03-24 12:15:54.165 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule
-2021-03-24 12:15:54.166 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule
-2021-03-24 12:15:54.168 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule
-2021-03-24 12:15:54.169 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule
-2021-03-24 12:15:54.181 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule
-2021-03-24 12:15:54.182 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule
-2021-03-24 12:15:54.184 +08:00 [INF] - Zzz.PublicApi.ZzzPublicApiModule
-2021-03-24 12:15:54.751 +08:00 [INF] Initialized all ABP modules.
-2021-03-24 12:15:54.788 +08:00 [INF] Now listening on: http://localhost:50001
-2021-03-24 12:15:54.790 +08:00 [INF] Application started. Press Ctrl+C to shut down.
-2021-03-24 12:15:54.792 +08:00 [INF] Hosting environment: Development
-2021-03-24 12:15:54.793 +08:00 [INF] Content root path: E:\越海\【7】ERP\vnextbackendservices\aspnetcore\src\Zzz.PublicApi.Host
-2021-03-24 12:15:56.722 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/swagger/index.html - -
-2021-03-24 12:15:56.853 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/swagger/index.html - - - 200 - text/html;charset=utf-8 132.4989ms
-2021-03-24 12:15:57.122 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/swagger/v1/swagger.json - -
-2021-03-24 12:15:57.205 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 82.5172ms
-2021-03-24 12:15:59.694 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/api/Sample/config - -
-2021-03-24 12:15:59.794 +08:00 [INF] Executing endpoint 'Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host)'
-2021-03-24 12:15:59.843 +08:00 [INF] Route matched with {action = "GetConfig", controller = "Sample", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] GetConfig() on controller Zzz.PublicApi.Host.Controllers.SampleController (Zzz.PublicApi.Host).
-2021-03-24 12:16:00.151 +08:00 [INF] Executed action Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host) in 297.2304ms
-2021-03-24 12:16:00.204 +08:00 [INF] Executed endpoint 'Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host)'
-2021-03-24 12:16:00.239 +08:00 [ERR] HTTP GET /api/Sample/config responded 500 in 438.7041 ms
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Zzz.PublicApi.Host.Controllers.SampleController.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Zzz.PublicApi.Host.Controllers.SampleController' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Zzz.Dic.IDicAppService dicAppService' of constructor 'Void .ctor(Microsoft.Extensions.Configuration.IConfiguration, Zzz.Dic.IDicAppService)'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.Execute(ResolveRequest request)
- at Autofac.Core.Lifetime.LifetimeScope.ResolveComponent(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType, IEnumerable`1 parameters)
- at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType)
- at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType)
- at Microsoft.AspNetCore.Mvc.Controllers.ServiceBasedControllerActivator.Create(ControllerContext actionContext)
- at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass5_0.g__CreateController|0(ControllerContext controllerContext)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ExceptionContextSealed context)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeNextResourceFilter()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker)
- at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
- at Serilog.AspNetCore.RequestLoggingMiddleware.Invoke(HttpContext httpContext)
-2021-03-24 12:16:00.455 +08:00 [ERR] An unhandled exception has occurred while executing the request.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Zzz.PublicApi.Host.Controllers.SampleController.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Zzz.PublicApi.Host.Controllers.SampleController' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Zzz.Dic.IDicAppService dicAppService' of constructor 'Void .ctor(Microsoft.Extensions.Configuration.IConfiguration, Zzz.Dic.IDicAppService)'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.Execute(ResolveRequest request)
- at Autofac.Core.Lifetime.LifetimeScope.ResolveComponent(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType, IEnumerable`1 parameters)
- at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType)
- at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType)
- at Microsoft.AspNetCore.Mvc.Controllers.ServiceBasedControllerActivator.Create(ControllerContext actionContext)
- at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass5_0.g__CreateController|0(ControllerContext controllerContext)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ExceptionContextSealed context)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeNextResourceFilter()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker)
- at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
- at Serilog.AspNetCore.RequestLoggingMiddleware.Invoke(HttpContext httpContext)
- at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context)
- at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context)
- at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext)
- at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider)
- at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context)
-2021-03-24 12:16:00.511 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/api/Sample/config - - - 500 - text/plain 816.3292ms
-2021-03-24 12:16:54.827 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest.
-2021-03-24 12:16:54.968 +08:00 [INF] Loaded ABP modules:
-2021-03-24 12:16:54.970 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule
-2021-03-24 12:16:54.971 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule
-2021-03-24 12:16:54.972 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule
-2021-03-24 12:16:54.973 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule
-2021-03-24 12:16:54.974 +08:00 [INF] - Volo.Abp.Data.AbpDataModule
-2021-03-24 12:16:54.975 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule
-2021-03-24 12:16:54.975 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule
-2021-03-24 12:16:54.977 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule
-2021-03-24 12:16:54.978 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule
-2021-03-24 12:16:54.979 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule
-2021-03-24 12:16:54.980 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule
-2021-03-24 12:16:54.981 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule
-2021-03-24 12:16:54.982 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule
-2021-03-24 12:16:54.983 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule
-2021-03-24 12:16:54.984 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule
-2021-03-24 12:16:54.985 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule
-2021-03-24 12:16:54.985 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule
-2021-03-24 12:16:54.986 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule
-2021-03-24 12:16:54.988 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule
-2021-03-24 12:16:54.988 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule
-2021-03-24 12:16:54.989 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule
-2021-03-24 12:16:54.989 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule
-2021-03-24 12:16:54.990 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule
-2021-03-24 12:16:54.991 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule
-2021-03-24 12:16:54.992 +08:00 [INF] - Volo.Abp.UI.AbpUiModule
-2021-03-24 12:16:54.999 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule
-2021-03-24 12:16:55.000 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule
-2021-03-24 12:16:55.000 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule
-2021-03-24 12:16:55.003 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule
-2021-03-24 12:16:55.006 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule
-2021-03-24 12:16:55.007 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule
-2021-03-24 12:16:55.008 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule
-2021-03-24 12:16:55.010 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule
-2021-03-24 12:16:55.010 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule
-2021-03-24 12:16:55.011 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule
-2021-03-24 12:16:55.012 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule
-2021-03-24 12:16:55.013 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule
-2021-03-24 12:16:55.014 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule
-2021-03-24 12:16:55.016 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule
-2021-03-24 12:16:55.019 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule
-2021-03-24 12:16:55.020 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule
-2021-03-24 12:16:55.021 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule
-2021-03-24 12:16:55.022 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule
-2021-03-24 12:16:55.023 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule
-2021-03-24 12:16:55.023 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule
-2021-03-24 12:16:55.025 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule
-2021-03-24 12:16:55.026 +08:00 [INF] - EasyAbp.Abp.SettingUi.SettingUiDomainSharedModule
-2021-03-24 12:16:55.027 +08:00 [INF] - Zzz.ZzzDomainSharedModule
-2021-03-24 12:16:55.028 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule
-2021-03-24 12:16:55.029 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule
-2021-03-24 12:16:55.030 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule
-2021-03-24 12:16:55.032 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule
-2021-03-24 12:16:55.033 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule
-2021-03-24 12:16:55.037 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule
-2021-03-24 12:16:55.038 +08:00 [INF] - EasyAbp.Abp.SettingUi.SettingUiApplicationContractsModule
-2021-03-24 12:16:55.040 +08:00 [INF] - Zzz.ZzzApplicationContractsModule
-2021-03-24 12:16:55.041 +08:00 [INF] - Zzz.PublicApi.ZzzPublicApiModule
-2021-03-24 12:16:55.535 +08:00 [INF] Initialized all ABP modules.
-2021-03-24 12:16:55.573 +08:00 [INF] Now listening on: http://localhost:50001
-2021-03-24 12:16:55.575 +08:00 [INF] Application started. Press Ctrl+C to shut down.
-2021-03-24 12:16:55.577 +08:00 [INF] Hosting environment: Development
-2021-03-24 12:16:55.579 +08:00 [INF] Content root path: E:\越海\【7】ERP\vnextbackendservices\aspnetcore\src\Zzz.PublicApi.Host
-2021-03-24 12:16:57.920 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/swagger/index.html - -
-2021-03-24 12:16:58.040 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/swagger/index.html - - - 200 - text/html;charset=utf-8 121.3366ms
-2021-03-24 12:16:58.356 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/swagger/v1/swagger.json - -
-2021-03-24 12:16:58.434 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 77.6603ms
-2021-03-24 12:17:02.188 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/api/Sample/config - -
-2021-03-24 12:17:02.279 +08:00 [INF] Executing endpoint 'Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host)'
-2021-03-24 12:17:02.330 +08:00 [INF] Route matched with {action = "GetConfig", controller = "Sample", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] GetConfig() on controller Zzz.PublicApi.Host.Controllers.SampleController (Zzz.PublicApi.Host).
-2021-03-24 12:17:02.625 +08:00 [INF] Executed action Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host) in 282.1285ms
-2021-03-24 12:17:02.658 +08:00 [INF] Executed endpoint 'Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host)'
-2021-03-24 12:17:02.680 +08:00 [ERR] HTTP GET /api/Sample/config responded 500 in 394.2534 ms
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Zzz.PublicApi.Host.Controllers.SampleController.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Zzz.PublicApi.Host.Controllers.SampleController' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Zzz.Dic.IDicAppService dicAppService' of constructor 'Void .ctor(Microsoft.Extensions.Configuration.IConfiguration, Zzz.Dic.IDicAppService)'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.Execute(ResolveRequest request)
- at Autofac.Core.Lifetime.LifetimeScope.ResolveComponent(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType, IEnumerable`1 parameters)
- at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType)
- at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType)
- at Microsoft.AspNetCore.Mvc.Controllers.ServiceBasedControllerActivator.Create(ControllerContext actionContext)
- at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass5_0.g__CreateController|0(ControllerContext controllerContext)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ExceptionContextSealed context)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeNextResourceFilter()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker)
- at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
- at Serilog.AspNetCore.RequestLoggingMiddleware.Invoke(HttpContext httpContext)
-2021-03-24 12:17:02.884 +08:00 [ERR] An unhandled exception has occurred while executing the request.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Zzz.PublicApi.Host.Controllers.SampleController.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Zzz.PublicApi.Host.Controllers.SampleController' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Zzz.Dic.IDicAppService dicAppService' of constructor 'Void .ctor(Microsoft.Extensions.Configuration.IConfiguration, Zzz.Dic.IDicAppService)'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.Execute(ResolveRequest request)
- at Autofac.Core.Lifetime.LifetimeScope.ResolveComponent(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType, IEnumerable`1 parameters)
- at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType)
- at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType)
- at Microsoft.AspNetCore.Mvc.Controllers.ServiceBasedControllerActivator.Create(ControllerContext actionContext)
- at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass5_0.g__CreateController|0(ControllerContext controllerContext)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ExceptionContextSealed context)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeNextResourceFilter()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker)
- at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
- at Serilog.AspNetCore.RequestLoggingMiddleware.Invoke(HttpContext httpContext)
- at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context)
- at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context)
- at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext)
- at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider)
- at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context)
-2021-03-24 12:17:02.938 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/api/Sample/config - - - 500 - text/plain 750.2292ms
-2021-03-24 12:18:02.787 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest.
-2021-03-24 12:18:02.925 +08:00 [INF] Loaded ABP modules:
-2021-03-24 12:18:02.927 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule
-2021-03-24 12:18:02.928 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule
-2021-03-24 12:18:02.928 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule
-2021-03-24 12:18:02.930 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule
-2021-03-24 12:18:02.931 +08:00 [INF] - Volo.Abp.Data.AbpDataModule
-2021-03-24 12:18:02.932 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule
-2021-03-24 12:18:02.933 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule
-2021-03-24 12:18:02.933 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule
-2021-03-24 12:18:02.935 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule
-2021-03-24 12:18:02.936 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule
-2021-03-24 12:18:02.937 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule
-2021-03-24 12:18:02.937 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule
-2021-03-24 12:18:02.938 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule
-2021-03-24 12:18:02.939 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule
-2021-03-24 12:18:02.940 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule
-2021-03-24 12:18:02.941 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule
-2021-03-24 12:18:02.942 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule
-2021-03-24 12:18:02.944 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule
-2021-03-24 12:18:02.945 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule
-2021-03-24 12:18:02.946 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule
-2021-03-24 12:18:02.947 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule
-2021-03-24 12:18:02.948 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule
-2021-03-24 12:18:02.949 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule
-2021-03-24 12:18:02.949 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule
-2021-03-24 12:18:02.950 +08:00 [INF] - Volo.Abp.UI.AbpUiModule
-2021-03-24 12:18:02.951 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule
-2021-03-24 12:18:02.954 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule
-2021-03-24 12:18:02.956 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule
-2021-03-24 12:18:02.961 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule
-2021-03-24 12:18:02.963 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule
-2021-03-24 12:18:02.964 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule
-2021-03-24 12:18:02.965 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule
-2021-03-24 12:18:02.966 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule
-2021-03-24 12:18:02.967 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule
-2021-03-24 12:18:02.968 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule
-2021-03-24 12:18:02.969 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule
-2021-03-24 12:18:02.970 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule
-2021-03-24 12:18:02.971 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule
-2021-03-24 12:18:02.976 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule
-2021-03-24 12:18:02.977 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule
-2021-03-24 12:18:02.978 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule
-2021-03-24 12:18:02.980 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule
-2021-03-24 12:18:02.981 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule
-2021-03-24 12:18:02.982 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule
-2021-03-24 12:18:02.983 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule
-2021-03-24 12:18:02.984 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule
-2021-03-24 12:18:02.985 +08:00 [INF] - EasyAbp.Abp.SettingUi.SettingUiDomainSharedModule
-2021-03-24 12:18:02.986 +08:00 [INF] - Zzz.ZzzDomainSharedModule
-2021-03-24 12:18:02.987 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule
-2021-03-24 12:18:02.988 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule
-2021-03-24 12:18:02.993 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule
-2021-03-24 12:18:02.995 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule
-2021-03-24 12:18:02.996 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule
-2021-03-24 12:18:02.997 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule
-2021-03-24 12:18:02.998 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule
-2021-03-24 12:18:02.999 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule
-2021-03-24 12:18:02.999 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule
-2021-03-24 12:18:03.000 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule
-2021-03-24 12:18:03.001 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule
-2021-03-24 12:18:03.004 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule
-2021-03-24 12:18:03.012 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule
-2021-03-24 12:18:03.013 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule
-2021-03-24 12:18:03.015 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule
-2021-03-24 12:18:03.016 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule
-2021-03-24 12:18:03.017 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule
-2021-03-24 12:18:03.019 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule
-2021-03-24 12:18:03.020 +08:00 [INF] - EasyAbp.Abp.SettingUi.SettingUiDomainModule
-2021-03-24 12:18:03.022 +08:00 [INF] - Zzz.ZzzDomainModule
-2021-03-24 12:18:03.023 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule
-2021-03-24 12:18:03.025 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule
-2021-03-24 12:18:03.026 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule
-2021-03-24 12:18:03.026 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule
-2021-03-24 12:18:03.027 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule
-2021-03-24 12:18:03.028 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule
-2021-03-24 12:18:03.029 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule
-2021-03-24 12:18:03.030 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule
-2021-03-24 12:18:03.033 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule
-2021-03-24 12:18:03.036 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule
-2021-03-24 12:18:03.037 +08:00 [INF] - EasyAbp.Abp.SettingUi.SettingUiApplicationContractsModule
-2021-03-24 12:18:03.037 +08:00 [INF] - Zzz.ZzzApplicationContractsModule
-2021-03-24 12:18:03.038 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule
-2021-03-24 12:18:03.039 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule
-2021-03-24 12:18:03.040 +08:00 [INF] - EasyAbp.Abp.SettingUi.SettingUiApplicationModule
-2021-03-24 12:18:03.042 +08:00 [INF] - Zzz.ZzzApplicationModule
-2021-03-24 12:18:03.043 +08:00 [INF] - Zzz.PublicApi.ZzzPublicApiModule
-2021-03-24 12:18:03.607 +08:00 [INF] Initialized all ABP modules.
-2021-03-24 12:18:03.651 +08:00 [INF] Now listening on: http://localhost:50001
-2021-03-24 12:18:03.653 +08:00 [INF] Application started. Press Ctrl+C to shut down.
-2021-03-24 12:18:03.655 +08:00 [INF] Hosting environment: Development
-2021-03-24 12:18:03.656 +08:00 [INF] Content root path: E:\越海\【7】ERP\vnextbackendservices\aspnetcore\src\Zzz.PublicApi.Host
-2021-03-24 12:18:05.543 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/swagger/index.html - -
-2021-03-24 12:18:05.899 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/swagger/index.html - - - 200 - text/html;charset=utf-8 359.1047ms
-2021-03-24 12:18:06.267 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/swagger/v1/swagger.json - -
-2021-03-24 12:18:06.375 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 108.1870ms
-2021-03-24 12:18:08.289 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.Execute(ResolveRequest request)
- at Autofac.Core.Lifetime.LifetimeScope.ResolveComponent(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType, IEnumerable`1 parameters)
- at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType)
- at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:18:08.362 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:18:09.218 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/api/Sample/config - -
-2021-03-24 12:18:09.327 +08:00 [INF] Executing endpoint 'Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host)'
-2021-03-24 12:18:09.372 +08:00 [INF] Route matched with {action = "GetConfig", controller = "Sample", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] GetConfig() on controller Zzz.PublicApi.Host.Controllers.SampleController (Zzz.PublicApi.Host).
-2021-03-24 12:18:09.726 +08:00 [INF] Executed action Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host) in 345.8483ms
-2021-03-24 12:18:09.756 +08:00 [INF] Executed endpoint 'Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host)'
-2021-03-24 12:18:09.777 +08:00 [ERR] HTTP GET /api/Sample/config responded 500 in 445.0086 ms
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Zzz.PublicApi.Host.Controllers.SampleController -> Zzz.Dic.DicAppService.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Zzz.Dic.DicAppService' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.Domain.Repositories.IRepository`2[Zzz.Dic.DataDictionary,System.Guid] dataDictionaryRepository' of constructor 'Void .ctor(Volo.Abp.Domain.Repositories.IRepository`2[Zzz.Dic.DataDictionary,System.Guid], Volo.Abp.Users.ICurrentUser, Volo.Abp.Guids.IGuidGenerator, Microsoft.Extensions.Localization.IStringLocalizer`1[Zzz.Localization.ZzzResource])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Extras.DynamicProxy.RegistrationExtensions.<>c__DisplayClass8_0`3.b__1(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.Execute(ResolveRequest request)
- at Autofac.Core.Lifetime.LifetimeScope.ResolveComponent(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType, IEnumerable`1 parameters)
- at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType)
- at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType)
- at Microsoft.AspNetCore.Mvc.Controllers.ServiceBasedControllerActivator.Create(ControllerContext actionContext)
- at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass5_0.g__CreateController|0(ControllerContext controllerContext)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ExceptionContextSealed context)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeNextResourceFilter()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker)
- at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
- at Serilog.AspNetCore.RequestLoggingMiddleware.Invoke(HttpContext httpContext)
-2021-03-24 12:18:09.925 +08:00 [ERR] An unhandled exception has occurred while executing the request.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Zzz.PublicApi.Host.Controllers.SampleController -> Zzz.Dic.DicAppService.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Zzz.Dic.DicAppService' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.Domain.Repositories.IRepository`2[Zzz.Dic.DataDictionary,System.Guid] dataDictionaryRepository' of constructor 'Void .ctor(Volo.Abp.Domain.Repositories.IRepository`2[Zzz.Dic.DataDictionary,System.Guid], Volo.Abp.Users.ICurrentUser, Volo.Abp.Guids.IGuidGenerator, Microsoft.Extensions.Localization.IStringLocalizer`1[Zzz.Localization.ZzzResource])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Extras.DynamicProxy.RegistrationExtensions.<>c__DisplayClass8_0`3.b__1(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.Execute(ResolveRequest request)
- at Autofac.Core.Lifetime.LifetimeScope.ResolveComponent(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType, IEnumerable`1 parameters)
- at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType)
- at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType)
- at Microsoft.AspNetCore.Mvc.Controllers.ServiceBasedControllerActivator.Create(ControllerContext actionContext)
- at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass5_0.g__CreateController|0(ControllerContext controllerContext)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ExceptionContextSealed context)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeNextResourceFilter()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker)
- at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
- at Serilog.AspNetCore.RequestLoggingMiddleware.Invoke(HttpContext httpContext)
- at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context)
- at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context)
- at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext)
- at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider)
- at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context)
-2021-03-24 12:18:09.978 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/api/Sample/config - - - 500 - text/plain 759.6311ms
-2021-03-24 12:18:13.516 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:18:13.538 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:18:18.677 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:18:18.693 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:18:23.820 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:18:23.837 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:18:28.965 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:18:28.982 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:18:34.093 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:18:34.110 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:18:39.219 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:18:39.237 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:18:44.351 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:18:44.369 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:18:49.495 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:18:49.512 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:18:54.628 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:18:54.643 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:18:59.751 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:18:59.768 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:19:04.880 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:19:04.899 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:19:10.019 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:19:10.035 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:19:15.157 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:19:15.174 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:19:20.289 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:19:20.306 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:19:25.427 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:19:25.440 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:19:30.550 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:19:30.568 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:19:35.679 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:19:35.696 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:19:40.809 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:19:40.826 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:19:45.950 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:19:45.967 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:19:51.081 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:19:51.096 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:25:22.851 +08:00 [INF] User profile is available. Using 'C:\Users\wangjun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest.
-2021-03-24 12:25:22.987 +08:00 [INF] Loaded ABP modules:
-2021-03-24 12:25:22.989 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule
-2021-03-24 12:25:22.989 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule
-2021-03-24 12:25:22.990 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule
-2021-03-24 12:25:22.991 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule
-2021-03-24 12:25:22.991 +08:00 [INF] - Volo.Abp.Data.AbpDataModule
-2021-03-24 12:25:22.992 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule
-2021-03-24 12:25:22.992 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule
-2021-03-24 12:25:22.993 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule
-2021-03-24 12:25:22.994 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule
-2021-03-24 12:25:22.994 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule
-2021-03-24 12:25:22.995 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule
-2021-03-24 12:25:22.996 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule
-2021-03-24 12:25:22.996 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule
-2021-03-24 12:25:22.999 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule
-2021-03-24 12:25:23.000 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule
-2021-03-24 12:25:23.000 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule
-2021-03-24 12:25:23.001 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule
-2021-03-24 12:25:23.002 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule
-2021-03-24 12:25:23.003 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule
-2021-03-24 12:25:23.003 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule
-2021-03-24 12:25:23.004 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule
-2021-03-24 12:25:23.005 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule
-2021-03-24 12:25:23.005 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule
-2021-03-24 12:25:23.006 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule
-2021-03-24 12:25:23.009 +08:00 [INF] - Volo.Abp.UI.AbpUiModule
-2021-03-24 12:25:23.009 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule
-2021-03-24 12:25:23.010 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule
-2021-03-24 12:25:23.011 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule
-2021-03-24 12:25:23.012 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule
-2021-03-24 12:25:23.012 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule
-2021-03-24 12:25:23.013 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule
-2021-03-24 12:25:23.014 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule
-2021-03-24 12:25:23.015 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule
-2021-03-24 12:25:23.016 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule
-2021-03-24 12:25:23.019 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule
-2021-03-24 12:25:23.023 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule
-2021-03-24 12:25:23.024 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule
-2021-03-24 12:25:23.025 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule
-2021-03-24 12:25:23.026 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainSharedModule
-2021-03-24 12:25:23.027 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule
-2021-03-24 12:25:23.029 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule
-2021-03-24 12:25:23.032 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule
-2021-03-24 12:25:23.033 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule
-2021-03-24 12:25:23.034 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule
-2021-03-24 12:25:23.035 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule
-2021-03-24 12:25:23.037 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule
-2021-03-24 12:25:23.039 +08:00 [INF] - EasyAbp.Abp.SettingUi.SettingUiDomainSharedModule
-2021-03-24 12:25:23.041 +08:00 [INF] - Zzz.ZzzDomainSharedModule
-2021-03-24 12:25:23.042 +08:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule
-2021-03-24 12:25:23.043 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule
-2021-03-24 12:25:23.045 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule
-2021-03-24 12:25:23.051 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsModule
-2021-03-24 12:25:23.052 +08:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule
-2021-03-24 12:25:23.054 +08:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule
-2021-03-24 12:25:23.056 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule
-2021-03-24 12:25:23.057 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule
-2021-03-24 12:25:23.058 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule
-2021-03-24 12:25:23.065 +08:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule
-2021-03-24 12:25:23.066 +08:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule
-2021-03-24 12:25:23.068 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule
-2021-03-24 12:25:23.069 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule
-2021-03-24 12:25:23.070 +08:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule
-2021-03-24 12:25:23.071 +08:00 [INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainModule
-2021-03-24 12:25:23.075 +08:00 [INF] - Volo.Abp.PermissionManagement.IdentityServer.AbpPermissionManagementDomainIdentityServerModule
-2021-03-24 12:25:23.084 +08:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule
-2021-03-24 12:25:23.086 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule
-2021-03-24 12:25:23.088 +08:00 [INF] - EasyAbp.Abp.SettingUi.SettingUiDomainModule
-2021-03-24 12:25:23.089 +08:00 [INF] - Zzz.ZzzDomainModule
-2021-03-24 12:25:23.090 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule
-2021-03-24 12:25:23.095 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule
-2021-03-24 12:25:23.096 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule
-2021-03-24 12:25:23.098 +08:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule
-2021-03-24 12:25:23.099 +08:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule
-2021-03-24 12:25:23.100 +08:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule
-2021-03-24 12:25:23.101 +08:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule
-2021-03-24 12:25:23.102 +08:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule
-2021-03-24 12:25:23.105 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule
-2021-03-24 12:25:23.106 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule
-2021-03-24 12:25:23.110 +08:00 [INF] - EasyAbp.Abp.SettingUi.SettingUiApplicationContractsModule
-2021-03-24 12:25:23.111 +08:00 [INF] - Zzz.ZzzApplicationContractsModule
-2021-03-24 12:25:23.112 +08:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule
-2021-03-24 12:25:23.114 +08:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule
-2021-03-24 12:25:23.116 +08:00 [INF] - EasyAbp.Abp.SettingUi.SettingUiApplicationModule
-2021-03-24 12:25:23.117 +08:00 [INF] - Zzz.ZzzApplicationModule
-2021-03-24 12:25:23.118 +08:00 [INF] - Zzz.PublicApi.ZzzPublicApiModule
-2021-03-24 12:25:23.703 +08:00 [INF] Initialized all ABP modules.
-2021-03-24 12:25:23.743 +08:00 [INF] Now listening on: http://localhost:50001
-2021-03-24 12:25:23.745 +08:00 [INF] Application started. Press Ctrl+C to shut down.
-2021-03-24 12:25:23.746 +08:00 [INF] Hosting environment: Development
-2021-03-24 12:25:23.748 +08:00 [INF] Content root path: E:\越海\【7】ERP\vnextbackendservices\aspnetcore\src\Zzz.PublicApi.Host
-2021-03-24 12:25:25.702 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/swagger/index.html - -
-2021-03-24 12:25:25.821 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/swagger/index.html - - - 200 - text/html;charset=utf-8 120.1668ms
-2021-03-24 12:25:26.097 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/swagger/v1/swagger.json - -
-2021-03-24 12:25:26.185 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/swagger/v1/swagger.json - - - 200 - application/json;charset=utf-8 87.5406ms
-2021-03-24 12:25:28.242 +08:00 [INF] Request starting HTTP/1.1 GET http://localhost:50001/api/Sample/config - -
-2021-03-24 12:25:28.350 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.Execute(ResolveRequest request)
- at Autofac.Core.Lifetime.LifetimeScope.ResolveComponent(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType, IEnumerable`1 parameters)
- at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType)
- at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:25:28.456 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:25:28.464 +08:00 [INF] Executing endpoint 'Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host)'
-2021-03-24 12:25:28.507 +08:00 [INF] Route matched with {action = "GetConfig", controller = "Sample", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] GetConfig() on controller Zzz.PublicApi.Host.Controllers.SampleController (Zzz.PublicApi.Host).
-2021-03-24 12:25:28.882 +08:00 [INF] Executed action Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host) in 366.6502ms
-2021-03-24 12:25:28.915 +08:00 [INF] Executed endpoint 'Zzz.PublicApi.Host.Controllers.SampleController.GetConfig (Zzz.PublicApi.Host)'
-2021-03-24 12:25:28.936 +08:00 [ERR] HTTP GET /api/Sample/config responded 500 in 467.3251 ms
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Zzz.PublicApi.Host.Controllers.SampleController -> Zzz.Dic.DicAppService.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Zzz.Dic.DicAppService' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.Domain.Repositories.IRepository`2[Zzz.Dic.DataDictionary,System.Guid] dataDictionaryRepository' of constructor 'Void .ctor(Volo.Abp.Domain.Repositories.IRepository`2[Zzz.Dic.DataDictionary,System.Guid], Volo.Abp.Users.ICurrentUser, Volo.Abp.Guids.IGuidGenerator, Microsoft.Extensions.Localization.IStringLocalizer`1[Zzz.Localization.ZzzResource])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Extras.DynamicProxy.RegistrationExtensions.<>c__DisplayClass8_0`3.b__1(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.Execute(ResolveRequest request)
- at Autofac.Core.Lifetime.LifetimeScope.ResolveComponent(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType, IEnumerable`1 parameters)
- at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType)
- at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType)
- at Microsoft.AspNetCore.Mvc.Controllers.ServiceBasedControllerActivator.Create(ControllerContext actionContext)
- at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass5_0.g__CreateController|0(ControllerContext controllerContext)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ExceptionContextSealed context)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeNextResourceFilter()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker)
- at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
- at Serilog.AspNetCore.RequestLoggingMiddleware.Invoke(HttpContext httpContext)
-2021-03-24 12:25:29.088 +08:00 [ERR] An unhandled exception has occurred while executing the request.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Zzz.PublicApi.Host.Controllers.SampleController -> Zzz.Dic.DicAppService.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Zzz.Dic.DicAppService' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.Domain.Repositories.IRepository`2[Zzz.Dic.DataDictionary,System.Guid] dataDictionaryRepository' of constructor 'Void .ctor(Volo.Abp.Domain.Repositories.IRepository`2[Zzz.Dic.DataDictionary,System.Guid], Volo.Abp.Users.ICurrentUser, Volo.Abp.Guids.IGuidGenerator, Microsoft.Extensions.Localization.IStringLocalizer`1[Zzz.Localization.ZzzResource])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Extras.DynamicProxy.RegistrationExtensions.<>c__DisplayClass8_0`3.b__1(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.Execute(ResolveRequest request)
- at Autofac.Core.Lifetime.LifetimeScope.ResolveComponent(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType, IEnumerable`1 parameters)
- at Autofac.ResolutionExtensions.Resolve(IComponentContext context, Type serviceType)
- at Autofac.Extensions.DependencyInjection.AutofacServiceProvider.GetRequiredService(Type serviceType)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType)
- at Microsoft.AspNetCore.Mvc.Controllers.ServiceBasedControllerActivator.Create(ControllerContext actionContext)
- at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass5_0.g__CreateController|0(ControllerContext controllerContext)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ExceptionContextSealed context)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeNextResourceFilter()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync()
---- End of stack trace from previous location ---
- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker)
- at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger)
- at Serilog.AspNetCore.RequestLoggingMiddleware.Invoke(HttpContext httpContext)
- at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context)
- at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context)
- at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext)
- at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider)
- at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context)
-2021-03-24 12:25:29.134 +08:00 [INF] Request finished HTTP/1.1 GET http://localhost:50001/api/Sample/config - - - 500 - text/plain 892.2539ms
-2021-03-24 12:25:33.579 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:25:33.591 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:25:38.703 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:25:38.726 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:25:43.854 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:25:43.869 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:25:48.979 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:25:48.995 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:25:54.102 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:25:54.118 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:25:59.230 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:25:59.254 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:26:04.365 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:26:04.389 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:26:09.498 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:26:09.541 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:26:14.651 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:26:14.667 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:26:19.825 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:26:19.843 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:26:24.968 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:26:24.987 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:26:30.108 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:26:30.124 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:26:35.236 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:26:35.250 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:26:40.376 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:26:40.395 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:26:45.508 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:26:45.529 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:26:50.647 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:26:50.664 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:26:55.784 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:26:55.797 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:27:00.904 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:27:00.919 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:27:06.026 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:27:06.043 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:27:11.157 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:27:11.171 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:27:16.271 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:27:16.290 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:27:21.414 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:27:21.433 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:27:26.559 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:27:26.575 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:27:31.688 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:27:31.703 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:27:36.808 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:27:36.823 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:27:41.952 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:27:41.969 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:27:47.089 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:27:47.105 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:27:52.214 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:27:52.230 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:27:57.348 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:27:57.367 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:28:02.498 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:28:02.515 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:28:07.619 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:28:07.635 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:28:12.758 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:28:12.777 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:28:17.885 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:28:17.900 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:28:23.009 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:28:23.028 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:28:28.141 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:28:28.161 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:28:33.265 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:28:33.290 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:28:38.412 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:28:38.432 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:28:43.540 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:28:43.554 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:28:48.672 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:28:48.690 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:28:53.794 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:28:53.812 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:28:58.917 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:28:58.934 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:29:04.044 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:29:04.062 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:29:09.165 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:29:09.186 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:29:14.305 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:29:14.323 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:29:19.450 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:29:19.467 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:29:24.591 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:29:24.607 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:29:29.722 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:29:29.736 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:29:34.862 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:29:34.877 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:29:39.989 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:29:40.002 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:29:45.123 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:29:45.139 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:29:50.247 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:29:50.264 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:29:55.371 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:29:55.391 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:30:00.501 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:30:00.516 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:30:05.622 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:30:05.639 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:30:10.764 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:30:10.780 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:30:15.890 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.b__0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- --- End of inner exception stack trace ---
- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request)
- at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request)
- at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable`1 parameters, Object& instance)
- at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable`1 parameters)
- at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService[T](IServiceProvider provider)
- at Volo.Abp.BackgroundJobs.BackgroundJobWorker.DoWorkAsync(PeriodicBackgroundWorkerContext workerContext)
- at Volo.Abp.BackgroundWorkers.AsyncPeriodicBackgroundWorkerBase.DoWorkAsync()
-2021-03-24 12:30:15.905 +08:00 [ERR] ---------- Exception Data ----------
-ActivatorChain = Volo.Abp.BackgroundJobs.BackgroundJobStore
-
-2021-03-24 12:30:21.016 +08:00 [ERR] An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
-Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.BackgroundJobs.BackgroundJobStore.
- ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Volo.Abp.BackgroundJobs.BackgroundJobStore' can be invoked with the available services and parameters:
-Cannot resolve parameter 'Volo.Abp.BackgroundJobs.IBackgroundJobRepository backgroundJobRepository' of constructor 'Void .ctor(Volo.Abp.BackgroundJobs.IBackgroundJobRepository, Volo.Abp.ObjectMapping.IObjectMapper`1[Volo.Abp.BackgroundJobs.AbpBackgroundJobsDomainModule])'.
- at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable`1 parameters)
- at Autofac.Core.Activators.Reflection.ReflectionActivator.b__11_0(ResolveRequestContext ctxt, Action`1 next)
- at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action`1 next)
- at Autofac.Builder.RegistrationBuilder`3.<>c__DisplayClass41_0.