Bean manipulation and the BeanWrapper
从spring reference 中摘过来的哦。Company.java[code="java"]public class Company { private String name; private Employee managingDirector; public String getName() { return this.name; } publ...