├── .gitattributes ├── .gitignore ├── README.md ├── demo1 ├── dotnet │ └── ServiceOne │ │ └── ServiceOne │ │ ├── ServiceOne.sln │ │ ├── ServiceOne │ │ ├── Controllers │ │ │ └── ValuesController.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── ServiceOne.csproj │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ └── ServiceTwo │ │ ├── Controllers │ │ └── ValuesController.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServiceTwo.csproj │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json └── java │ └── service-center │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── leo │ │ │ └── ServiceCenterApplication.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── leo │ └── ServiceCenterApplicationTests.java ├── demo2 ├── dotnet │ └── Services │ │ ├── ServiceOne │ │ ├── Controllers │ │ │ └── ValuesController.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── ServiceOne.csproj │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ ├── ServiceThree │ │ ├── Controllers │ │ │ └── ValuesController.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── PublishProfiles │ │ │ │ └── FolderProfile.pubxml │ │ │ └── launchSettings.json │ │ ├── ServiceThree.csproj │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ ├── ServiceTwo │ │ ├── Controllers │ │ │ └── ValuesController.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── PublishProfiles │ │ │ │ └── FolderProfile.pubxml │ │ │ └── launchSettings.json │ │ ├── ServiceTwo.csproj │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ └── Services.sln └── java │ └── service-center │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── leo │ │ │ └── ServiceCenterApplication.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── leo │ └── ServiceCenterApplicationTests.java ├── demo3 ├── dotnet │ └── Orders │ │ ├── Order1 │ │ ├── Controllers │ │ │ └── ValuesController.cs │ │ ├── Order1.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ ├── Orders.sln │ │ └── order2 │ │ ├── Controllers │ │ └── ValuesController.cs │ │ ├── Order2.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json └── java │ ├── service-center │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── leo │ │ │ │ └── ServiceCenterApplication.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── leo │ │ └── ServiceCenterApplicationTests.java │ └── service-gateway │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── leo │ │ │ └── ServiceGatewayApplication.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── leo │ └── ServiceGatewayApplicationTests.java ├── demo4 ├── dotnet │ └── ConfigClient │ │ ├── ConfigClient.sln │ │ └── ConfigClient1 │ │ ├── ConfigClient1.csproj │ │ ├── Controllers │ │ └── ValuesController.cs │ │ ├── Demo.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json └── java │ └── config-server │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── leo │ │ │ └── ConfigServerApplication.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── leo │ └── ConfigServerApplicationTests.java ├── demo5 ├── dotnet │ └── ConfigClient │ │ ├── ConfigClient.sln │ │ └── ConfigClient1 │ │ ├── ConfigClient1.csproj │ │ ├── Controllers │ │ └── ValuesController.cs │ │ ├── Demo.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json └── java │ ├── config-client │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── leo │ │ │ │ ├── ConfigClientApplication.java │ │ │ │ ├── controllers │ │ │ │ └── DemoController.java │ │ │ │ └── models │ │ │ │ └── Demo.java │ │ └── resources │ │ │ ├── application-c1.properties │ │ │ ├── application-c2.properties │ │ │ ├── application-c3.properties │ │ │ ├── application.properties │ │ │ └── bootstrap.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── leo │ │ └── ConfigClientApplicationTests.java │ ├── config-server │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── leo │ │ │ │ └── ConfigServerApplication.java │ │ └── resources │ │ │ ├── application-s1.properties │ │ │ ├── application-s2.properties │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── leo │ │ └── ConfigServerApplicationTests.java │ ├── demo │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── demo │ │ │ │ └── DemoApplication.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── demo │ │ └── DemoApplicationTests.java │ └── service-center │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── leo │ │ │ └── ServiceCenterApplication.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── leo │ └── ServiceCenterApplicationTests.java └── demo6 ├── dotnet └── Services │ ├── Common │ ├── Common.csproj │ ├── HttpContentExtension.cs │ └── IdentityServer │ │ ├── IdentityServerAuthenticationDefaults.cs │ │ ├── IdentityServerAuthenticationExtensions.cs │ │ ├── IdentityServerAuthenticationHandler.cs │ │ └── IdentityServerAuthenticationOptions.cs │ ├── Identity │ ├── Config.cs │ ├── Identity.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── RedisPersistedGrantStore.cs │ ├── ResourceOwnerPasswordValidator.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── tempkey.rsa │ ├── IdentityModel.AspNetCore.OAuth2Introspection │ ├── IdentityModel.AspNetCore.OAuth2Introspection.csproj │ ├── Infrastructure │ │ ├── AsyncLazy.cs │ │ ├── CacheExtensions.cs │ │ ├── ClaimConverter.cs │ │ ├── StringExtensions.cs │ │ └── TokenRetrieval.cs │ ├── OAuth2IntrospectionDefaults.cs │ ├── OAuth2IntrospectionExtensions.cs │ ├── OAuth2IntrospectionHandler.cs │ ├── OAuth2IntrospectionOptions.cs │ └── PostConfigureOAuth2IntrospectionOptions.cs │ ├── IdentityModel │ ├── Base64Url.cs │ ├── ClaimComparer.cs │ ├── Client │ │ ├── AuthenticationStyle.cs │ │ ├── AuthorizeRequest.cs │ │ ├── AuthorizeRequestExtensions.cs │ │ ├── AuthorizeResponse.cs │ │ ├── BasicAuthenticationHeaderValue.cs │ │ ├── DiscoveryCache.cs │ │ ├── DiscoveryClient.cs │ │ ├── DiscoveryPolicy.cs │ │ ├── DiscoveryResponse.cs │ │ ├── DynamicRegistrationClient.cs │ │ ├── HttpClientExtensions.cs │ │ ├── IntrospectionClient.cs │ │ ├── IntrospectionRequest.cs │ │ ├── IntrospectionResponse.cs │ │ ├── JObjectExtensions.cs │ │ ├── RefreshTokenHandler.cs │ │ ├── RegistrationRequest.cs │ │ ├── RegistrationResponse.cs │ │ ├── Response.cs │ │ ├── ResponseErrorType.cs │ │ ├── TokenClient.cs │ │ ├── TokenClientExtensions.cs │ │ ├── TokenResponse.cs │ │ ├── TokenRevocationClient.cs │ │ ├── TokenRevocationClientExtensions.cs │ │ ├── TokenRevocationRequest.cs │ │ ├── TokenRevocationResponse.cs │ │ ├── UserInfoClient.cs │ │ └── UserInfoResponse.cs │ ├── CryptoRandom.cs │ ├── EpochTimeExtensions.cs │ ├── Identity.cs │ ├── IdentityModel.csproj │ ├── Internal │ │ ├── AsyncLazy.cs │ │ ├── DiscoveryUrlHelper.cs │ │ └── InternalStringExtensions.cs │ ├── Jwk │ │ ├── JsonWebAlgorithmsKeyTypes.cs │ │ ├── JsonWebKeyParameterNames.cs │ │ ├── JsonWebKeySet.cs │ │ ├── JsonWebkey.cs │ │ └── JwkExtensions.cs │ ├── JwtClaimTypes.cs │ ├── OidcConstants.cs │ ├── Principal.cs │ ├── StringExtensions.cs │ ├── TimeConstantComparer.cs │ └── X509Certificates │ │ ├── X509.cs │ │ ├── X509CertificatesFinder.cs │ │ ├── X509CertificatesLocation.cs │ │ └── X509CertificatesName.cs │ ├── IdentityServer4.AccessTokenValidation │ ├── AuthorizationPolicyExtensions.cs │ ├── ConfigureInternalOptions.cs │ ├── IdentityServer4.AccessTokenValidation.csproj │ ├── IdentityServerAuthenticationDefaults.cs │ ├── IdentityServerAuthenticationExtensions.cs │ ├── IdentityServerAuthenticationHandler.cs │ ├── IdentityServerAuthenticationOptions.cs │ └── SupportedTokens.cs │ ├── Order │ ├── Controllers │ │ └── ValuesController.cs │ ├── Order.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json │ ├── Pay │ ├── Controllers │ │ └── ValuesController.cs │ ├── Pay.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json │ ├── Product │ ├── Controllers │ │ └── ValuesController.cs │ ├── Product.csproj │ ├── Program.cs │ ├── Properties │ │ ├── PublishProfiles │ │ │ └── FolderProfile.pubxml │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json │ ├── Services.sln │ └── User │ ├── Controllers │ └── ValuesController.cs │ ├── Models │ ├── Account.cs │ ├── LoginRequest.cs │ └── LoginResponse.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── User.csproj │ ├── appsettings.Development.json │ └── appsettings.json └── java ├── service-center ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── leo │ │ │ └── ServiceCenterApplication.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── leo │ └── ServiceCenterApplicationTests.java └── service-gateway ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── leo │ │ └── ServiceGatewayApplication.java └── resources │ └── application.properties └── test └── java └── com └── leo └── ServiceGatewayApplicationTests.java /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/README.md -------------------------------------------------------------------------------- /demo1/dotnet/ServiceOne/ServiceOne/ServiceOne.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/dotnet/ServiceOne/ServiceOne/ServiceOne.sln -------------------------------------------------------------------------------- /demo1/dotnet/ServiceOne/ServiceOne/ServiceOne/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/dotnet/ServiceOne/ServiceOne/ServiceOne/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /demo1/dotnet/ServiceOne/ServiceOne/ServiceOne/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/dotnet/ServiceOne/ServiceOne/ServiceOne/Program.cs -------------------------------------------------------------------------------- /demo1/dotnet/ServiceOne/ServiceOne/ServiceOne/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/dotnet/ServiceOne/ServiceOne/ServiceOne/Properties/launchSettings.json -------------------------------------------------------------------------------- /demo1/dotnet/ServiceOne/ServiceOne/ServiceOne/ServiceOne.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/dotnet/ServiceOne/ServiceOne/ServiceOne/ServiceOne.csproj -------------------------------------------------------------------------------- /demo1/dotnet/ServiceOne/ServiceOne/ServiceOne/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/dotnet/ServiceOne/ServiceOne/ServiceOne/Startup.cs -------------------------------------------------------------------------------- /demo1/dotnet/ServiceOne/ServiceOne/ServiceOne/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/dotnet/ServiceOne/ServiceOne/ServiceOne/appsettings.Development.json -------------------------------------------------------------------------------- /demo1/dotnet/ServiceOne/ServiceOne/ServiceOne/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/dotnet/ServiceOne/ServiceOne/ServiceOne/appsettings.json -------------------------------------------------------------------------------- /demo1/dotnet/ServiceOne/ServiceOne/ServiceTwo/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/dotnet/ServiceOne/ServiceOne/ServiceTwo/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /demo1/dotnet/ServiceOne/ServiceOne/ServiceTwo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/dotnet/ServiceOne/ServiceOne/ServiceTwo/Program.cs -------------------------------------------------------------------------------- /demo1/dotnet/ServiceOne/ServiceOne/ServiceTwo/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/dotnet/ServiceOne/ServiceOne/ServiceTwo/Properties/launchSettings.json -------------------------------------------------------------------------------- /demo1/dotnet/ServiceOne/ServiceOne/ServiceTwo/ServiceTwo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/dotnet/ServiceOne/ServiceOne/ServiceTwo/ServiceTwo.csproj -------------------------------------------------------------------------------- /demo1/dotnet/ServiceOne/ServiceOne/ServiceTwo/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/dotnet/ServiceOne/ServiceOne/ServiceTwo/Startup.cs -------------------------------------------------------------------------------- /demo1/dotnet/ServiceOne/ServiceOne/ServiceTwo/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/dotnet/ServiceOne/ServiceOne/ServiceTwo/appsettings.Development.json -------------------------------------------------------------------------------- /demo1/dotnet/ServiceOne/ServiceOne/ServiceTwo/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/dotnet/ServiceOne/ServiceOne/ServiceTwo/appsettings.json -------------------------------------------------------------------------------- /demo1/java/service-center/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/java/service-center/.gitignore -------------------------------------------------------------------------------- /demo1/java/service-center/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/java/service-center/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /demo1/java/service-center/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/java/service-center/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /demo1/java/service-center/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/java/service-center/mvnw -------------------------------------------------------------------------------- /demo1/java/service-center/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/java/service-center/mvnw.cmd -------------------------------------------------------------------------------- /demo1/java/service-center/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/java/service-center/pom.xml -------------------------------------------------------------------------------- /demo1/java/service-center/src/main/java/com/leo/ServiceCenterApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/java/service-center/src/main/java/com/leo/ServiceCenterApplication.java -------------------------------------------------------------------------------- /demo1/java/service-center/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/java/service-center/src/main/resources/application.properties -------------------------------------------------------------------------------- /demo1/java/service-center/src/test/java/com/leo/ServiceCenterApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo1/java/service-center/src/test/java/com/leo/ServiceCenterApplicationTests.java -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceOne/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceOne/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceOne/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceOne/Program.cs -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceOne/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceOne/Properties/launchSettings.json -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceOne/ServiceOne.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceOne/ServiceOne.csproj -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceOne/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceOne/Startup.cs -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceOne/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceOne/appsettings.Development.json -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceOne/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceOne/appsettings.json -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceThree/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceThree/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceThree/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceThree/Program.cs -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceThree/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceThree/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceThree/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceThree/Properties/launchSettings.json -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceThree/ServiceThree.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceThree/ServiceThree.csproj -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceThree/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceThree/Startup.cs -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceThree/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceThree/appsettings.Development.json -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceThree/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceThree/appsettings.json -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceTwo/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceTwo/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceTwo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceTwo/Program.cs -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceTwo/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceTwo/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceTwo/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceTwo/Properties/launchSettings.json -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceTwo/ServiceTwo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceTwo/ServiceTwo.csproj -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceTwo/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceTwo/Startup.cs -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceTwo/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceTwo/appsettings.Development.json -------------------------------------------------------------------------------- /demo2/dotnet/Services/ServiceTwo/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/ServiceTwo/appsettings.json -------------------------------------------------------------------------------- /demo2/dotnet/Services/Services.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/dotnet/Services/Services.sln -------------------------------------------------------------------------------- /demo2/java/service-center/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/java/service-center/.gitignore -------------------------------------------------------------------------------- /demo2/java/service-center/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/java/service-center/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /demo2/java/service-center/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/java/service-center/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /demo2/java/service-center/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/java/service-center/mvnw -------------------------------------------------------------------------------- /demo2/java/service-center/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/java/service-center/mvnw.cmd -------------------------------------------------------------------------------- /demo2/java/service-center/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/java/service-center/pom.xml -------------------------------------------------------------------------------- /demo2/java/service-center/src/main/java/com/leo/ServiceCenterApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/java/service-center/src/main/java/com/leo/ServiceCenterApplication.java -------------------------------------------------------------------------------- /demo2/java/service-center/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/java/service-center/src/main/resources/application.properties -------------------------------------------------------------------------------- /demo2/java/service-center/src/test/java/com/leo/ServiceCenterApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo2/java/service-center/src/test/java/com/leo/ServiceCenterApplicationTests.java -------------------------------------------------------------------------------- /demo3/dotnet/Orders/Order1/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/dotnet/Orders/Order1/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /demo3/dotnet/Orders/Order1/Order1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/dotnet/Orders/Order1/Order1.csproj -------------------------------------------------------------------------------- /demo3/dotnet/Orders/Order1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/dotnet/Orders/Order1/Program.cs -------------------------------------------------------------------------------- /demo3/dotnet/Orders/Order1/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/dotnet/Orders/Order1/Properties/launchSettings.json -------------------------------------------------------------------------------- /demo3/dotnet/Orders/Order1/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/dotnet/Orders/Order1/Startup.cs -------------------------------------------------------------------------------- /demo3/dotnet/Orders/Order1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/dotnet/Orders/Order1/appsettings.Development.json -------------------------------------------------------------------------------- /demo3/dotnet/Orders/Order1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/dotnet/Orders/Order1/appsettings.json -------------------------------------------------------------------------------- /demo3/dotnet/Orders/Orders.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/dotnet/Orders/Orders.sln -------------------------------------------------------------------------------- /demo3/dotnet/Orders/order2/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/dotnet/Orders/order2/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /demo3/dotnet/Orders/order2/Order2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/dotnet/Orders/order2/Order2.csproj -------------------------------------------------------------------------------- /demo3/dotnet/Orders/order2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/dotnet/Orders/order2/Program.cs -------------------------------------------------------------------------------- /demo3/dotnet/Orders/order2/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/dotnet/Orders/order2/Properties/launchSettings.json -------------------------------------------------------------------------------- /demo3/dotnet/Orders/order2/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/dotnet/Orders/order2/Startup.cs -------------------------------------------------------------------------------- /demo3/dotnet/Orders/order2/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/dotnet/Orders/order2/appsettings.Development.json -------------------------------------------------------------------------------- /demo3/dotnet/Orders/order2/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/dotnet/Orders/order2/appsettings.json -------------------------------------------------------------------------------- /demo3/java/service-center/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/java/service-center/.gitignore -------------------------------------------------------------------------------- /demo3/java/service-center/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/java/service-center/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /demo3/java/service-center/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/java/service-center/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /demo3/java/service-center/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/java/service-center/mvnw -------------------------------------------------------------------------------- /demo3/java/service-center/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/java/service-center/mvnw.cmd -------------------------------------------------------------------------------- /demo3/java/service-center/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/java/service-center/pom.xml -------------------------------------------------------------------------------- /demo3/java/service-center/src/main/java/com/leo/ServiceCenterApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/java/service-center/src/main/java/com/leo/ServiceCenterApplication.java -------------------------------------------------------------------------------- /demo3/java/service-center/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/java/service-center/src/main/resources/application.properties -------------------------------------------------------------------------------- /demo3/java/service-center/src/test/java/com/leo/ServiceCenterApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/java/service-center/src/test/java/com/leo/ServiceCenterApplicationTests.java -------------------------------------------------------------------------------- /demo3/java/service-gateway/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/java/service-gateway/.gitignore -------------------------------------------------------------------------------- /demo3/java/service-gateway/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/java/service-gateway/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /demo3/java/service-gateway/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/java/service-gateway/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /demo3/java/service-gateway/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/java/service-gateway/mvnw -------------------------------------------------------------------------------- /demo3/java/service-gateway/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/java/service-gateway/mvnw.cmd -------------------------------------------------------------------------------- /demo3/java/service-gateway/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/java/service-gateway/pom.xml -------------------------------------------------------------------------------- /demo3/java/service-gateway/src/main/java/com/leo/ServiceGatewayApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/java/service-gateway/src/main/java/com/leo/ServiceGatewayApplication.java -------------------------------------------------------------------------------- /demo3/java/service-gateway/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/java/service-gateway/src/main/resources/application.properties -------------------------------------------------------------------------------- /demo3/java/service-gateway/src/test/java/com/leo/ServiceGatewayApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo3/java/service-gateway/src/test/java/com/leo/ServiceGatewayApplicationTests.java -------------------------------------------------------------------------------- /demo4/dotnet/ConfigClient/ConfigClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo4/dotnet/ConfigClient/ConfigClient.sln -------------------------------------------------------------------------------- /demo4/dotnet/ConfigClient/ConfigClient1/ConfigClient1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo4/dotnet/ConfigClient/ConfigClient1/ConfigClient1.csproj -------------------------------------------------------------------------------- /demo4/dotnet/ConfigClient/ConfigClient1/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo4/dotnet/ConfigClient/ConfigClient1/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /demo4/dotnet/ConfigClient/ConfigClient1/Demo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo4/dotnet/ConfigClient/ConfigClient1/Demo.cs -------------------------------------------------------------------------------- /demo4/dotnet/ConfigClient/ConfigClient1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo4/dotnet/ConfigClient/ConfigClient1/Program.cs -------------------------------------------------------------------------------- /demo4/dotnet/ConfigClient/ConfigClient1/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo4/dotnet/ConfigClient/ConfigClient1/Properties/launchSettings.json -------------------------------------------------------------------------------- /demo4/dotnet/ConfigClient/ConfigClient1/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo4/dotnet/ConfigClient/ConfigClient1/Startup.cs -------------------------------------------------------------------------------- /demo4/dotnet/ConfigClient/ConfigClient1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo4/dotnet/ConfigClient/ConfigClient1/appsettings.Development.json -------------------------------------------------------------------------------- /demo4/dotnet/ConfigClient/ConfigClient1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo4/dotnet/ConfigClient/ConfigClient1/appsettings.json -------------------------------------------------------------------------------- /demo4/java/config-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo4/java/config-server/.gitignore -------------------------------------------------------------------------------- /demo4/java/config-server/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo4/java/config-server/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /demo4/java/config-server/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo4/java/config-server/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /demo4/java/config-server/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo4/java/config-server/mvnw -------------------------------------------------------------------------------- /demo4/java/config-server/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo4/java/config-server/mvnw.cmd -------------------------------------------------------------------------------- /demo4/java/config-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo4/java/config-server/pom.xml -------------------------------------------------------------------------------- /demo4/java/config-server/src/main/java/com/leo/ConfigServerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo4/java/config-server/src/main/java/com/leo/ConfigServerApplication.java -------------------------------------------------------------------------------- /demo4/java/config-server/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo4/java/config-server/src/main/resources/application.properties -------------------------------------------------------------------------------- /demo4/java/config-server/src/test/java/com/leo/ConfigServerApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo4/java/config-server/src/test/java/com/leo/ConfigServerApplicationTests.java -------------------------------------------------------------------------------- /demo5/dotnet/ConfigClient/ConfigClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/dotnet/ConfigClient/ConfigClient.sln -------------------------------------------------------------------------------- /demo5/dotnet/ConfigClient/ConfigClient1/ConfigClient1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/dotnet/ConfigClient/ConfigClient1/ConfigClient1.csproj -------------------------------------------------------------------------------- /demo5/dotnet/ConfigClient/ConfigClient1/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/dotnet/ConfigClient/ConfigClient1/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /demo5/dotnet/ConfigClient/ConfigClient1/Demo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/dotnet/ConfigClient/ConfigClient1/Demo.cs -------------------------------------------------------------------------------- /demo5/dotnet/ConfigClient/ConfigClient1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/dotnet/ConfigClient/ConfigClient1/Program.cs -------------------------------------------------------------------------------- /demo5/dotnet/ConfigClient/ConfigClient1/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/dotnet/ConfigClient/ConfigClient1/Properties/launchSettings.json -------------------------------------------------------------------------------- /demo5/dotnet/ConfigClient/ConfigClient1/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/dotnet/ConfigClient/ConfigClient1/Startup.cs -------------------------------------------------------------------------------- /demo5/dotnet/ConfigClient/ConfigClient1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/dotnet/ConfigClient/ConfigClient1/appsettings.Development.json -------------------------------------------------------------------------------- /demo5/dotnet/ConfigClient/ConfigClient1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/dotnet/ConfigClient/ConfigClient1/appsettings.json -------------------------------------------------------------------------------- /demo5/java/config-client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-client/.gitignore -------------------------------------------------------------------------------- /demo5/java/config-client/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-client/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /demo5/java/config-client/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-client/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /demo5/java/config-client/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-client/mvnw -------------------------------------------------------------------------------- /demo5/java/config-client/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-client/mvnw.cmd -------------------------------------------------------------------------------- /demo5/java/config-client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-client/pom.xml -------------------------------------------------------------------------------- /demo5/java/config-client/src/main/java/com/leo/ConfigClientApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-client/src/main/java/com/leo/ConfigClientApplication.java -------------------------------------------------------------------------------- /demo5/java/config-client/src/main/java/com/leo/controllers/DemoController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-client/src/main/java/com/leo/controllers/DemoController.java -------------------------------------------------------------------------------- /demo5/java/config-client/src/main/java/com/leo/models/Demo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-client/src/main/java/com/leo/models/Demo.java -------------------------------------------------------------------------------- /demo5/java/config-client/src/main/resources/application-c1.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-client/src/main/resources/application-c1.properties -------------------------------------------------------------------------------- /demo5/java/config-client/src/main/resources/application-c2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-client/src/main/resources/application-c2.properties -------------------------------------------------------------------------------- /demo5/java/config-client/src/main/resources/application-c3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-client/src/main/resources/application-c3.properties -------------------------------------------------------------------------------- /demo5/java/config-client/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.application.name=config-client 2 | server.port=5101 3 | -------------------------------------------------------------------------------- /demo5/java/config-client/src/main/resources/bootstrap.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-client/src/main/resources/bootstrap.properties -------------------------------------------------------------------------------- /demo5/java/config-client/src/test/java/com/leo/ConfigClientApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-client/src/test/java/com/leo/ConfigClientApplicationTests.java -------------------------------------------------------------------------------- /demo5/java/config-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-server/.gitignore -------------------------------------------------------------------------------- /demo5/java/config-server/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-server/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /demo5/java/config-server/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-server/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /demo5/java/config-server/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-server/mvnw -------------------------------------------------------------------------------- /demo5/java/config-server/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-server/mvnw.cmd -------------------------------------------------------------------------------- /demo5/java/config-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-server/pom.xml -------------------------------------------------------------------------------- /demo5/java/config-server/src/main/java/com/leo/ConfigServerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-server/src/main/java/com/leo/ConfigServerApplication.java -------------------------------------------------------------------------------- /demo5/java/config-server/src/main/resources/application-s1.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-server/src/main/resources/application-s1.properties -------------------------------------------------------------------------------- /demo5/java/config-server/src/main/resources/application-s2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-server/src/main/resources/application-s2.properties -------------------------------------------------------------------------------- /demo5/java/config-server/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-server/src/main/resources/application.properties -------------------------------------------------------------------------------- /demo5/java/config-server/src/test/java/com/leo/ConfigServerApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/config-server/src/test/java/com/leo/ConfigServerApplicationTests.java -------------------------------------------------------------------------------- /demo5/java/demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/demo/.gitignore -------------------------------------------------------------------------------- /demo5/java/demo/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/demo/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /demo5/java/demo/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/demo/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /demo5/java/demo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/demo/mvnw -------------------------------------------------------------------------------- /demo5/java/demo/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/demo/mvnw.cmd -------------------------------------------------------------------------------- /demo5/java/demo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/demo/pom.xml -------------------------------------------------------------------------------- /demo5/java/demo/src/main/java/com/example/demo/DemoApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/demo/src/main/java/com/example/demo/DemoApplication.java -------------------------------------------------------------------------------- /demo5/java/demo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo5/java/demo/src/test/java/com/example/demo/DemoApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/demo/src/test/java/com/example/demo/DemoApplicationTests.java -------------------------------------------------------------------------------- /demo5/java/service-center/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/service-center/.gitignore -------------------------------------------------------------------------------- /demo5/java/service-center/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/service-center/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /demo5/java/service-center/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/service-center/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /demo5/java/service-center/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/service-center/mvnw -------------------------------------------------------------------------------- /demo5/java/service-center/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/service-center/mvnw.cmd -------------------------------------------------------------------------------- /demo5/java/service-center/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/service-center/pom.xml -------------------------------------------------------------------------------- /demo5/java/service-center/src/main/java/com/leo/ServiceCenterApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/service-center/src/main/java/com/leo/ServiceCenterApplication.java -------------------------------------------------------------------------------- /demo5/java/service-center/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/service-center/src/main/resources/application.properties -------------------------------------------------------------------------------- /demo5/java/service-center/src/test/java/com/leo/ServiceCenterApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo5/java/service-center/src/test/java/com/leo/ServiceCenterApplicationTests.java -------------------------------------------------------------------------------- /demo6/dotnet/Services/Common/Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Common/Common.csproj -------------------------------------------------------------------------------- /demo6/dotnet/Services/Common/HttpContentExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Common/HttpContentExtension.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/Common/IdentityServer/IdentityServerAuthenticationDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Common/IdentityServer/IdentityServerAuthenticationDefaults.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/Common/IdentityServer/IdentityServerAuthenticationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Common/IdentityServer/IdentityServerAuthenticationExtensions.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/Common/IdentityServer/IdentityServerAuthenticationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Common/IdentityServer/IdentityServerAuthenticationHandler.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/Common/IdentityServer/IdentityServerAuthenticationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Common/IdentityServer/IdentityServerAuthenticationOptions.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/Identity/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Identity/Config.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/Identity/Identity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Identity/Identity.csproj -------------------------------------------------------------------------------- /demo6/dotnet/Services/Identity/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Identity/Program.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/Identity/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Identity/Properties/launchSettings.json -------------------------------------------------------------------------------- /demo6/dotnet/Services/Identity/RedisPersistedGrantStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Identity/RedisPersistedGrantStore.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/Identity/ResourceOwnerPasswordValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Identity/ResourceOwnerPasswordValidator.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/Identity/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Identity/Startup.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/Identity/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Identity/appsettings.Development.json -------------------------------------------------------------------------------- /demo6/dotnet/Services/Identity/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Identity/appsettings.json -------------------------------------------------------------------------------- /demo6/dotnet/Services/Identity/tempkey.rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Identity/tempkey.rsa -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel.AspNetCore.OAuth2Introspection/IdentityModel.AspNetCore.OAuth2Introspection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel.AspNetCore.OAuth2Introspection/IdentityModel.AspNetCore.OAuth2Introspection.csproj -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel.AspNetCore.OAuth2Introspection/Infrastructure/AsyncLazy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel.AspNetCore.OAuth2Introspection/Infrastructure/AsyncLazy.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel.AspNetCore.OAuth2Introspection/Infrastructure/CacheExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel.AspNetCore.OAuth2Introspection/Infrastructure/CacheExtensions.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel.AspNetCore.OAuth2Introspection/Infrastructure/ClaimConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel.AspNetCore.OAuth2Introspection/Infrastructure/ClaimConverter.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel.AspNetCore.OAuth2Introspection/Infrastructure/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel.AspNetCore.OAuth2Introspection/Infrastructure/StringExtensions.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel.AspNetCore.OAuth2Introspection/Infrastructure/TokenRetrieval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel.AspNetCore.OAuth2Introspection/Infrastructure/TokenRetrieval.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel.AspNetCore.OAuth2Introspection/OAuth2IntrospectionDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel.AspNetCore.OAuth2Introspection/OAuth2IntrospectionDefaults.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel.AspNetCore.OAuth2Introspection/OAuth2IntrospectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel.AspNetCore.OAuth2Introspection/OAuth2IntrospectionExtensions.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel.AspNetCore.OAuth2Introspection/OAuth2IntrospectionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel.AspNetCore.OAuth2Introspection/OAuth2IntrospectionHandler.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel.AspNetCore.OAuth2Introspection/OAuth2IntrospectionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel.AspNetCore.OAuth2Introspection/OAuth2IntrospectionOptions.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel.AspNetCore.OAuth2Introspection/PostConfigureOAuth2IntrospectionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel.AspNetCore.OAuth2Introspection/PostConfigureOAuth2IntrospectionOptions.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Base64Url.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Base64Url.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/ClaimComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/ClaimComparer.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/AuthenticationStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/AuthenticationStyle.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/AuthorizeRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/AuthorizeRequest.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/AuthorizeRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/AuthorizeRequestExtensions.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/AuthorizeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/AuthorizeResponse.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/BasicAuthenticationHeaderValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/BasicAuthenticationHeaderValue.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/DiscoveryCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/DiscoveryCache.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/DiscoveryClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/DiscoveryClient.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/DiscoveryPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/DiscoveryPolicy.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/DiscoveryResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/DiscoveryResponse.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/DynamicRegistrationClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/DynamicRegistrationClient.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/HttpClientExtensions.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/IntrospectionClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/IntrospectionClient.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/IntrospectionRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/IntrospectionRequest.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/IntrospectionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/IntrospectionResponse.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/JObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/JObjectExtensions.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/RefreshTokenHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/RefreshTokenHandler.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/RegistrationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/RegistrationRequest.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/RegistrationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/RegistrationResponse.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/Response.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/ResponseErrorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/ResponseErrorType.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/TokenClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/TokenClient.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/TokenClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/TokenClientExtensions.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/TokenResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/TokenResponse.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/TokenRevocationClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/TokenRevocationClient.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/TokenRevocationClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/TokenRevocationClientExtensions.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/TokenRevocationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/TokenRevocationRequest.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/TokenRevocationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/TokenRevocationResponse.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/UserInfoClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/UserInfoClient.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Client/UserInfoResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Client/UserInfoResponse.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/CryptoRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/CryptoRandom.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/EpochTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/EpochTimeExtensions.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Identity.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/IdentityModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/IdentityModel.csproj -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Internal/AsyncLazy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Internal/AsyncLazy.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Internal/DiscoveryUrlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Internal/DiscoveryUrlHelper.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Internal/InternalStringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Internal/InternalStringExtensions.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Jwk/JsonWebAlgorithmsKeyTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Jwk/JsonWebAlgorithmsKeyTypes.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Jwk/JsonWebKeyParameterNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Jwk/JsonWebKeyParameterNames.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Jwk/JsonWebKeySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Jwk/JsonWebKeySet.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Jwk/JsonWebkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Jwk/JsonWebkey.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Jwk/JwkExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Jwk/JwkExtensions.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/JwtClaimTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/JwtClaimTypes.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/OidcConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/OidcConstants.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/Principal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/Principal.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/StringExtensions.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/TimeConstantComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/TimeConstantComparer.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/X509Certificates/X509.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/X509Certificates/X509.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/X509Certificates/X509CertificatesFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/X509Certificates/X509CertificatesFinder.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/X509Certificates/X509CertificatesLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/X509Certificates/X509CertificatesLocation.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityModel/X509Certificates/X509CertificatesName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityModel/X509Certificates/X509CertificatesName.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityServer4.AccessTokenValidation/AuthorizationPolicyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityServer4.AccessTokenValidation/AuthorizationPolicyExtensions.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityServer4.AccessTokenValidation/ConfigureInternalOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityServer4.AccessTokenValidation/ConfigureInternalOptions.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityServer4.AccessTokenValidation/IdentityServer4.AccessTokenValidation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityServer4.AccessTokenValidation/IdentityServer4.AccessTokenValidation.csproj -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityServer4.AccessTokenValidation/IdentityServerAuthenticationDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityServer4.AccessTokenValidation/IdentityServerAuthenticationDefaults.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityServer4.AccessTokenValidation/IdentityServerAuthenticationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityServer4.AccessTokenValidation/IdentityServerAuthenticationExtensions.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityServer4.AccessTokenValidation/IdentityServerAuthenticationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityServer4.AccessTokenValidation/IdentityServerAuthenticationHandler.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityServer4.AccessTokenValidation/IdentityServerAuthenticationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityServer4.AccessTokenValidation/IdentityServerAuthenticationOptions.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/IdentityServer4.AccessTokenValidation/SupportedTokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/IdentityServer4.AccessTokenValidation/SupportedTokens.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/Order/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Order/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/Order/Order.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Order/Order.csproj -------------------------------------------------------------------------------- /demo6/dotnet/Services/Order/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Order/Program.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/Order/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Order/Properties/launchSettings.json -------------------------------------------------------------------------------- /demo6/dotnet/Services/Order/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Order/Startup.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/Order/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Order/appsettings.Development.json -------------------------------------------------------------------------------- /demo6/dotnet/Services/Order/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Order/appsettings.json -------------------------------------------------------------------------------- /demo6/dotnet/Services/Pay/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Pay/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/Pay/Pay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Pay/Pay.csproj -------------------------------------------------------------------------------- /demo6/dotnet/Services/Pay/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Pay/Program.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/Pay/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Pay/Properties/launchSettings.json -------------------------------------------------------------------------------- /demo6/dotnet/Services/Pay/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Pay/Startup.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/Pay/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Pay/appsettings.Development.json -------------------------------------------------------------------------------- /demo6/dotnet/Services/Pay/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Pay/appsettings.json -------------------------------------------------------------------------------- /demo6/dotnet/Services/Product/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Product/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/Product/Product.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Product/Product.csproj -------------------------------------------------------------------------------- /demo6/dotnet/Services/Product/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Product/Program.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/Product/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Product/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /demo6/dotnet/Services/Product/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Product/Properties/launchSettings.json -------------------------------------------------------------------------------- /demo6/dotnet/Services/Product/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Product/Startup.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/Product/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Product/appsettings.Development.json -------------------------------------------------------------------------------- /demo6/dotnet/Services/Product/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Product/appsettings.json -------------------------------------------------------------------------------- /demo6/dotnet/Services/Services.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/Services.sln -------------------------------------------------------------------------------- /demo6/dotnet/Services/User/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/User/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/User/Models/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/User/Models/Account.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/User/Models/LoginRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/User/Models/LoginRequest.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/User/Models/LoginResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/User/Models/LoginResponse.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/User/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/User/Program.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/User/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/User/Properties/launchSettings.json -------------------------------------------------------------------------------- /demo6/dotnet/Services/User/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/User/Startup.cs -------------------------------------------------------------------------------- /demo6/dotnet/Services/User/User.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/User/User.csproj -------------------------------------------------------------------------------- /demo6/dotnet/Services/User/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/User/appsettings.Development.json -------------------------------------------------------------------------------- /demo6/dotnet/Services/User/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/dotnet/Services/User/appsettings.json -------------------------------------------------------------------------------- /demo6/java/service-center/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/java/service-center/.gitignore -------------------------------------------------------------------------------- /demo6/java/service-center/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/java/service-center/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /demo6/java/service-center/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/java/service-center/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /demo6/java/service-center/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/java/service-center/mvnw -------------------------------------------------------------------------------- /demo6/java/service-center/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/java/service-center/mvnw.cmd -------------------------------------------------------------------------------- /demo6/java/service-center/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/java/service-center/pom.xml -------------------------------------------------------------------------------- /demo6/java/service-center/src/main/java/com/leo/ServiceCenterApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/java/service-center/src/main/java/com/leo/ServiceCenterApplication.java -------------------------------------------------------------------------------- /demo6/java/service-center/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/java/service-center/src/main/resources/application.properties -------------------------------------------------------------------------------- /demo6/java/service-center/src/test/java/com/leo/ServiceCenterApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/java/service-center/src/test/java/com/leo/ServiceCenterApplicationTests.java -------------------------------------------------------------------------------- /demo6/java/service-gateway/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/java/service-gateway/.gitignore -------------------------------------------------------------------------------- /demo6/java/service-gateway/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/java/service-gateway/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /demo6/java/service-gateway/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/java/service-gateway/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /demo6/java/service-gateway/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/java/service-gateway/mvnw -------------------------------------------------------------------------------- /demo6/java/service-gateway/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/java/service-gateway/mvnw.cmd -------------------------------------------------------------------------------- /demo6/java/service-gateway/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/java/service-gateway/pom.xml -------------------------------------------------------------------------------- /demo6/java/service-gateway/src/main/java/com/leo/ServiceGatewayApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/java/service-gateway/src/main/java/com/leo/ServiceGatewayApplication.java -------------------------------------------------------------------------------- /demo6/java/service-gateway/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/java/service-gateway/src/main/resources/application.properties -------------------------------------------------------------------------------- /demo6/java/service-gateway/src/test/java/com/leo/ServiceGatewayApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/longxianghui/microservice/HEAD/demo6/java/service-gateway/src/test/java/com/leo/ServiceGatewayApplicationTests.java --------------------------------------------------------------------------------