gpt4 book ai didi

c# - 'Quartz.Impl.StdSchedulerFactory' 的类型初始值设定项抛出异常

转载 作者:太空狗 更新时间:2023-10-29 23:17:42 26 4
gpt4 key购买 nike

我正在按照 Quartz.Net's tutorial 上的说明进行操作非常接近,但在尝试调试我的项目时出现启动错误。

 The type initializer for 'Quartz.Impl.StdSchedulerFactory' threw an exception.

我真的无法在网上找到任何帮助。这是配置问题吗?有人知道我在哪里可以获得需要配置的简单列表吗?

(我正在使用 Quartz.Net 2.0)

内部异常:{“无法从配置部分‘common/logging’获取 Common.Logging 的配置。”

最佳答案

您很可能没有引用所有必需的程序集,例如“Common.Logging.dll”。

更新

构造函数失败,因为您的 app.configweb.config 不包含 common\logging 部分。您的 .config 文件是否包含以下部分:

  <configSections>
<sectionGroup name="common">
<section name="logging" type="Common.Logging.ConfigurationSectionHandler, Common.Logging" />
</sectionGroup>
</configSections>
<common>
<logging>
<factoryAdapter type="Common.Logging.Simple.TraceLoggerFactoryAdapter, Common.Logging">
<arg key="level" value="DEBUG" />
<arg key="showLogName" value="true" />
<arg key="showDataTime" value="true" />
<arg key="dateTimeFormat" value="yyyy/MM/dd HH:mm:ss:fff" />
</factoryAdapter>
</logging>
</common>

关于c# - 'Quartz.Impl.StdSchedulerFactory' 的类型初始值设定项抛出异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7997725/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com