-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
To avoid that the app.* keys are shown as unknown in the editor, we can enable the annotation processor. Spring Boot metadata annotation processor looks for `@ConfigurationProperties` bean on class and `@Bean` definition. For the latter it exposes the properties found on the return type of the method. Previously, we exposed `javax.sql.DataSource` that does not expose any property (getter/setter) so the meta-data for that is empty. We switched to the Tomcat connection pool to expose its relevant properties.
- Loading branch information
Showing
3 changed files
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters