commit | b6625f99fe0408d088946af860ea615a8bfb2dbd | [log] [tgz] |
---|---|---|
author | Han Gao <dhangao@hotmail.com> | Fri Aug 12 14:41:56 2022 +0800 |
committer | GitHub <noreply@github.com> | Fri Aug 12 14:41:56 2022 +0800 |
tree | a506924975f2466306c21f6bb22ec4a1c03b436c | |
parent | 83bf3039e208524296ced5c561cc316fd1ff6a5b [diff] |
[ISSUE #31] Support integration test for http registration (#32) * Support integration test * small fix * fix dockerfile issue * sleep 30s to wait docker up * small fix * small fix * add license header
For ASP.NET Core project, we can refer to the example code at examples/AspNetCoreExample
. What you need to do is quite simple and straightforward.
dotnet add package <todo>
Startup.ConfigureServices
method, add the ShenyuRegister
service.public void ConfigureServices(IServiceCollection services) { ... services.AddShenyuRegister(this.Configuration); ... }
Shenyu
configurations in appsettings.json
.{ "Shenyu": { "Register": { "ServerList": "http://localhost:9095", "Props": { "UserName": "<your_admin_user>", "Password": "<your_admin_password>" } }, "Client": { "AppName": "dotnet-example", "ContextPath": "/dotnet", "IsFull": false, "ClientType": "http" } } }
When running on your local machine, ASP.NET Core service can only be called from localhost
. To enable calling by IP, you can replace https://localhost:{port};http://localhost:{port}
with https://*:{port};http://*:{port}
by one of the following ways.
launchSettings.json
. Replace for applicationUrl
field.ASPNETCORE_URLS
. e.g. ASPNETCORE_URLS "http://*:5000"
--urls
when start. e.g. dotnet run --urls "https://*:5001;http://*:5000"
UseUrls()
in Program.cs
.e.g.
public static IHostBuilder CreateHostBuilder(string[] args) => Host.CreateDefaultBuilder(args) .ConfigureWebHostDefaults(webBuilder => { webBuilder.UseStartup<Startup>(); webBuilder.UseUrls("http://*:5000", "https://*:5001"); });
That's all! After finished above steps, you can just start your project and you can visit shenyu-admin
portal to see the APIs have been registered in Shenyu.