BeanUtils.
Java Bean Utililities.
Here is the list of declaration for commons-beanutils. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.6</version> </dependency>
If you think this Maven repository POM file listing for commons-beanutils is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The commons-beanutils-1.6 has 3 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 3.7 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 21 |
The following table lists the most popular artifacts which are depending on commons-beanutils-1.6. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
XML | commons-digester 1.5 The Digester package lets you configure an XML->Java object mapping module which triggers certain actions called rules whenever a particular pattern of nested XML elements is recognized. | 8 |
XML | commons-digester 1.7 The Digester package lets you configure an XML->Java object mapping module which triggers certain actions called rules whenever a particular pattern of nested XML elements is recognized. | 182 |
XML | commons-digester 1.4.1 The Digester package lets you configure an XML->Java object mapping module which triggers certain actions called rules whenever a particular pattern of nested XML elements is recognized. | 31 |
XML | commons-jelly-tags-xml 1.1 The Jelly XML Tag Library | 154 |
XML | commons-jelly 1.0 Jelly is a Java and XML based scripting engine. Jelly combines the best ideas from JSTL, Velocity, DVSL, Ant and Cocoon all together in a simple yet powerful scripting engine. | 53 |
The following plugins are used in the commons-beanutils-1.6.jar
The following packages are defined in the commons-beanutils-1.6.jar
org.apache.commons.beanutils org.apache.commons.beanutils.converters org.apache.commons.beanutils.locale org.apache.commons.beanutils.locale.converters
Here is the content of the POM file.
<project> <modelVersion>4.0.0</modelVersion> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <name>BeanUtils</name> <version>1.6</version> <description>Java Bean Utililities</description> <url>http://jakarta.apache.org/commons/beanutils/</url> <inceptionYear>2000</inceptionYear> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/*TestCase.java</include> </includes> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.7</version> <scope>test</scope> </dependency> </dependencies> </project>