1
0
mirror of https://gitee.com/mirrors/Spring-Cloud-Alibaba.git synced 2021-06-26 13:25:11 +08:00

Merge pull request #1511 from J-Cod3r/master

fix nacos-discovery-example readme doc
This commit is contained in:
Mercy Ma 2020-07-09 10:39:36 +08:00 committed by GitHub
commit bc657f6677
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@
public class ProviderApplication { public class ProviderApplication {
public static void main(String[] args) { public static void main(String[] args) {
SpringApplication.run(Application.class, args); SpringApplication.run(ProviderApplication.class, args);
} }
@RestController @RestController

View File

@ -29,7 +29,7 @@ Before we start the demo, let's learn how to connect Nacos Config to a Spring Cl
public class ProviderApplication { public class ProviderApplication {
public static void main(String[] args) { public static void main(String[] args) {
SpringApplication.run(Application.class, args); SpringApplication.run(ProviderApplication.class, args);
} }
@RestController @RestController