Fix bean name by adding sample class with prefix
See gh-34029
This commit is contained in:
committed by
Andy Wilkinson
parent
595ac4398c
commit
0a3007133b
@@ -16,6 +16,9 @@
|
||||
|
||||
package org.springframework.boot.docs.features.externalconfig.typesafeconfigurationproperties.enablingannotatedtypes;
|
||||
|
||||
class SomeProperties {
|
||||
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||
|
||||
@ConfigurationProperties("some.properties")
|
||||
public class SomeProperties {
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
package org.springframework.boot.docs.features.externalconfig.typesafeconfigurationproperties.enablingannotatedtypes
|
||||
|
||||
import org.springframework.boot.context.properties.ConfigurationProperties
|
||||
|
||||
@ConfigurationProperties("some.properties")
|
||||
class SomeProperties
|
||||
Reference in New Issue
Block a user