Spring是否包含类似于BeanUtils populate方法的东西?

时间:2013-09-27 21:32:58

标签: spring spring-integration

我正在尝试使用地图中的数据填充pojo。我可以使用Apache Commons,但我很好奇Spring是否也有内置的实现。

我知道Spring必须包含一个执行此映射的方法; spring集成入站http网关将HTTP有效负载映射到POJO(请求有效负载类型)。

BeanUtils是否符合我想要的事实标准?

2 个答案:

答案 0 :(得分:0)

Spring Integration有一个MapToObjectTransformer,它的逻辑与Spring MVC的情况相同 - DataBinder。 所以,我想只需阅读MapToObjectTransformer的源代码即可。

答案 1 :(得分:-1)

Spring还包含BeanUtils

请参阅以下链接:

org.springframework.beans.BeanUtils