Update B.2.1. Nested properties.md

master
qibaoguang 2015-04-30 20:14:07 +08:00
parent a4e019f8f2
commit 098fed906e
1 changed files with 25 additions and 0 deletions

View File

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