Skip to content

Commit d14f283

Browse files
authored
Merge pull request #127723 from edburns/edburns-msft-github-61728-java-class-mismatch
On branch edburns-msft-github-61728-java-class-mismatch Use matching class name.
2 parents 423ddda + 6db01da commit d14f283

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/spring-cloud/spring-cloud-tutorial-managed-identities-key-vault.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,13 +109,13 @@ This app will have access to get secrets from Azure Key Vault. Use the starter a
109109
110110
@SpringBootApplication
111111
@RestController
112-
public class SecretsApplication implements CommandLineRunner {
112+
public class DemoApplication implements CommandLineRunner {
113113
114114
@Value("${connectionString}")
115115
private String connectionString;
116116
117117
public static void main(String[] args) {
118-
SpringApplication.run(SecretsApplication.class, args);
118+
SpringApplication.run(DemoApplication.class, args);
119119
}
120120
121121
@GetMapping("get")

0 commit comments

Comments
 (0)