ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

「日常记录」Java实用工具 - org.apache.commons.beanutils.BeanUtils

2021-08-11 17:00:45  阅读:249  来源: 互联网

标签:Building Java methods 实用工具 such BeanUtils JavaBean


什么是 BeanUtils?

官方解释

Commons BeanUtils
Most Java developers are used to creating Java classes that conform to the JavaBeans naming patterns for property getters and setters. It is natural to then access these methods directly, using calls to the corresponding getXxx and setXxx methods. However, there are some occasions where dynamic access to Java object properties (without compiled-in knowledge of the property getter and setter methods to be called) is needed. Example use cases include:

Building scripting languages that interact with the Java object model (such as the Bean Scripting Framework).
Building template language processors for web presentation and similar uses (such as JSP or Velocity).
Building custom tag libraries for JSP and XSP environments (such as Jakarta Taglibs, Struts, Cocoon).
Consuming XML-based configuration resources (such as Ant build scripts, web application deployment descriptors, Tomcat’s server.xml file).
The Java language provides Reflection and Introspection APIs (see the java.lang.reflect and java.beans packages in the JDK Javadocs). However, these APIs can be quite complex to understand and utilize. The BeanUtils component provides easy-to-use wrappers around these capabilities.

个人理解

Apache的Commons包中的BeanUtils工具类,提供了对于JavaBean进行各种操作, 比如对象,属性复制等。

  • 克隆JavaBean
    cloneBean(final Object bean)
    传入需要克隆的JavaBean,会返回一个克隆后的JavaBean,且原JavaBean不变。
  • JavaBean2Map
    describe(final Object bean)
    传入需要转换的JavaBean,会返回一个Map<String, String>的集合,原JavaBean不变;
    P.S.:该方法会将JavaBean的所有属性进行转换,包括父类的属性。

标签:Building,Java,methods,实用工具,such,BeanUtils,JavaBean
来源: https://www.cnblogs.com/EarthTvFC/p/15129054.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有