|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<configuration>
|
|
|
|
|
<configSections>
|
|
|
|
|
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
|
|
|
|
|
<section name="quartz" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.5000.0,Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
|
|
|
|
|
|
|
|
|
|
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
|
|
|
|
|
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
|
|
|
|
|
</configSections>
|
|
|
|
|
|
|
|
|
|
<appSettings>
|
|
|
|
|
|
|
|
|
|
<!-- 服务的名称、显示名称 -->
|
|
|
|
|
<add key="ServiceName" value="MyshippingEventService"/>
|
|
|
|
|
<add key="ServiceDisplayName" value="大简云-消息事件处理程序"/>
|
|
|
|
|
|
|
|
|
|
<!-- redis服务器地址 -->
|
|
|
|
|
<add key="RedisServerAddr" value="192.168.0.80"/>
|
|
|
|
|
|
|
|
|
|
<!-- rabbitmq地址 -->
|
|
|
|
|
<add key="FeedbackMQUri" value="amqp://billcenter:123qwe@47.104.207.5:12567/billcenter.test"/>
|
|
|
|
|
|
|
|
|
|
<!-- rabbitmq地址(动作日志) -->
|
|
|
|
|
<add key="ActionLogMQUri" value="amqp://djy_action:123qwe@47.104.207.5:12567/djy.action.test"/>
|
|
|
|
|
|
|
|
|
|
</appSettings>
|
|
|
|
|
|
|
|
|
|
<connectionStrings>
|
|
|
|
|
<add name="DongShengDB" connectionString="Data Source=123.234.225.158,28000;Initial Catalog=DevDsPingTai;Persist Security Info=True;User ID=dev;Password=dev123" providerName="System.Data.SqlClient" />
|
|
|
|
|
<add name="BillTraceDB" connectionString="Data Source=123.234.225.158,28000;Initial Catalog=DevBillTrace;Persist Security Info=True;User ID=dev;Password=dev123" providerName="System.Data.SqlClient" />
|
|
|
|
|
<add name="DjyActionDB" connectionString="Data Source=123.234.225.158,28000;Initial Catalog=TestDjyAction;Persist Security Info=True;User ID=test;Password=test123" providerName="System.Data.SqlClient" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</connectionStrings>
|
|
|
|
|
<startup>
|
|
|
|
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
|
|
|
|
|
</startup>
|
|
|
|
|
<entityFramework>
|
|
|
|
|
<providers>
|
|
|
|
|
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer"/>
|
|
|
|
|
</providers>
|
|
|
|
|
</entityFramework>
|
|
|
|
|
<quartz>
|
|
|
|
|
<add key="quartz.scheduler.instanceName" value="ServerScheduler"/>
|
|
|
|
|
|
|
|
|
|
<add key="quartz.threadPool.type" value="Quartz.Simpl.SimpleThreadPool, Quartz"/>
|
|
|
|
|
<add key="quartz.threadPool.threadCount" value="10"/>
|
|
|
|
|
<add key="quartz.threadPool.threadPriority" value="2"/>
|
|
|
|
|
|
|
|
|
|
<add key="quartz.plugin.xml.type" value="Quartz.Plugin.Xml.XMLSchedulingDataProcessorPlugin, Quartz"/>
|
|
|
|
|
<add key="quartz.plugin.xml.fileNames" value="~/quartz_jobs.xml"/>
|
|
|
|
|
|
|
|
|
|
<add key="quartz.jobStore.misfireThreshold" value="30000"/>
|
|
|
|
|
<add key="quartz.jobStore.type" value="Quartz.Simpl.RAMJobStore, Quartz"/>
|
|
|
|
|
</quartz>
|
|
|
|
|
<runtime>
|
|
|
|
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
|
|
|
|
<dependentAssembly>
|
|
|
|
|
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral"/>
|
|
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1"/>
|
|
|
|
|
</dependentAssembly>
|
|
|
|
|
</assemblyBinding>
|
|
|
|
|
</runtime>
|
|
|
|
|
</configuration>
|