-
Notifications
You must be signed in to change notification settings - Fork 220
Open
Labels
for: eclipsesomething that is specific for Eclipsesomething that is specific for Eclipsefor: vscodesomething that is specific for VSCodesomething that is specific for VSCodestatus: waiting-for-feedbacktheme: property-editing-supporttype: enhancement
Description
Expected Behavior
Should link up the reference to bean method's return type class
Current Behavior
Unknown properties
Context
As given configuration class as below
@Configuration
public class FooConfiguration {
public static final String PREFIX = "foo.bar";
@Bean
@ConfigurationProperties(PREFIX)
BarProperties barProperties() {
return new BarProperties();
}
}
public class BarProperties {
}
BarProperties type should be referenced on foo.bar properties in applicaiton.properties/application.yaml file, so that easier finding the correct type, same as @ConfigurationProperties annotation declaration on the class as below
@ConfigurationProperties(prefix = "foo.bar")
public class BarProperties {
}
Metadata
Metadata
Assignees
Labels
for: eclipsesomething that is specific for Eclipsesomething that is specific for Eclipsefor: vscodesomething that is specific for VSCodesomething that is specific for VSCodestatus: waiting-for-feedbacktheme: property-editing-supporttype: enhancement