Skip to content

Commit 6db01da

Browse files
committed
On branch edburns-msft-github-61728-java-class-mismatch Fixes https://github.com/MicrosoftDocs/azure-docs/issues/61728
modified: articles/spring-cloud/spring-cloud-tutorial-managed-identities-key-vault.md - Use matching class name.
1 parent ceb5c68 commit 6db01da

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)