Merge branch '2.7.x' into 3.0.x

Closes gh-34192
This commit is contained in:
Andy Wilkinson
2023-02-14 21:20:23 +00:00
3 changed files with 12 additions and 2 deletions

View File

@@ -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 {
}

View File

@@ -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