首页 > Web开发 > 详细

.Net Core Ocelot网关使用 一

时间:2020-08-22 08:14:24      阅读:55      评论:0      收藏:0      [点我收藏+]

首先建 立一个.net Core WebAPi 项目

安装下面两个东西,注意版本

技术分享图片

 

配置项目Startup.cs文件

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Ocelot.DependencyInjection;
using Ocelot.Middleware;
using Ocelot.Provider.Consul;

namespace WebOclot
{
    public class Startup
    {
        public Startup(IConfiguration configuration)
        {
            Configuration = configuration;
        }

        public IConfiguration Configuration { get; }

        // This method gets called by the runtime. Use this method to add services to the container.
        public void ConfigureServices(IServiceCollection services)
        {
            services.AddOcelot().AddConsul();
            // 删除掉此处所有默认的配置

        }

        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env)
        {
            app.UseOcelot();
            // 删除掉此处所有默认的配置
        }
    }
}

 

配置Ocelot配置文件

{
  "ReRoutes": [
    {
      "DownstreamPathTemplate": "/{url}",   // 服务地址--URL变量
      "DownstreamScheme": "http",
      "UpstreamPathTemplate": "/{url}",     // 网关地址--url变量
      "UpstreamHttpMethod": [ "Get", "Post" ],
      "UseServiceDiscovery": true,
      "ServiceName": "sopweb",     // consul 服务名称
      "LoadBalancerOptions": {
        "Type": "RoundRobin"     // 轮询 方式   LeastConnection  最少的连接数服务器   NoLoadBalance  不负载均衡
      }
    }
  ],
  "GlobalConfiguration": {
    "BaseUrl": "http://localhost:1140",   // 网关对外地址
    "ServiceDiscoveryProvider": {
      "Host": "47.92.27.244",   // 微服务主节点地址
      "Port": 8500,             // 微服务主节点端口号  
      "Type": "Consul"          // 由Consul提供服务发现,每次请求Consul
    }
  }

}

在项目中加载文件Program.cs  

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;

namespace WebOclot
{
    public class Program
    {
        public static void Main(string[] args)
        {
            CreateWebHostBuilder(args).Build().Run();
        }

        public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
            WebHost.CreateDefaultBuilder(args)
            .ConfigureAppConfiguration(conf=> {
                conf.AddJsonFile("OcelotSetting.json", optional: false,
                   reloadOnChange: true);
            })
                .UseStartup<Startup>();
    }
}

然后就可以访问服务sopweb了,只不过是用本地 http://localhost:1140访问的喔

技术分享图片

 

.Net Core Ocelot网关使用 一

原文:https://www.cnblogs.com/yingger/p/13543927.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!