第五篇,app.config文件配置

<?xml version="1.0" encoding="utf-8"?>
<!--
有关如何配置 ASP.NET 应用程序的详细信息,请访问
http://go.microsoft.com/fwlink/?LinkId=301880
-->
<configuration><configSections><!-- 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" />
<section name="serviceManager" type="Core.Consul.ServiceManagerSection,0.Core" />
</configSections>
<!--注册consul-->
<serviceManager address="http://192.168.1.111:8500/" register="false" service="sxf" ip="192.168.5.218" port="9988" token="245d0a09-7139-bbea-aadc-ff170a0562b1" />
<connectionStrings>

</connectionStrings>


 

 

</configuration>

根据前几篇的设置搭建后,在项目中的app.config文件里加入 serviceManager ,其中 address是 consul的地址, register 是否注册consul,service是 注册consul的服务名称 ,ip是当前系统发布后的ip地址 ,port是当前系统发布后的端口,token是 consul注册acl配置中的token。

 

如果不懂扫微信交流

第五篇,app.config文件配置

 

 

第五篇,app.config文件配置

上一篇:queryWrapper条件构造器,自定义分页查询(转载)


下一篇:JSP+Servlet+C3P0+Mysql实现的苹果网上商城