diff --git a/X. Appendices/B.2.1. Nested properties.md b/X. Appendices/B.2.1. Nested properties.md index e69de29..16039f7 100644 --- a/X. Appendices/B.2.1. Nested properties.md +++ b/X. Appendices/B.2.1. Nested properties.md @@ -0,0 +1,25 @@ +### 附录 B.2.1 内嵌属性 + +该注解处理器自动将内部类当做内嵌属性处理。例如,下面的类: +```java +@ConfigurationProperties(prefix="server") +public class ServerProperties { + + private String name; + + private Host host; + + // ... getter and setters + + private static class Host { + + private String ip; + + private int port; + + // ... getter and setters + + } + +} +```