search
HomeJavajavaTutorialWhat are the commonly used tools in JAVA development?

Commons BeanUtils

A toolset for Beans. Since beans are often composed of a bunch of get and set, BeanUtils also performs some packaging on this basis.

A more commonly used function is Bean Copy, which is to copy the properties of a bean. It will be used if you are developing a layered architecture, such as copying data from PO (Persistent Object) to VO (Value Object).

Commons Codec

It is an encoding and decoding component that provides commonly used encoding and decoding methods, such as DES, SHA1, MD5, Base64, URL and Soundx, etc.

Commons Collections

It is a collection component that extends the Java standard Collections API. It encapsulates, abstracts and supplements commonly used collection operations, greatly simplifying the code while ensuring performance.

Commons Compress

It is a component that compresses and decompresses files and can operate compressed files in rar, cpio, Unix dump, tar, zip, gzip, XZ, Pack200 and bzip2 formats.

Commons Configuration

It is a configuration management tool for Java applications that can load configuration information from properties or xml files.

Commons CSV

It is a Java class library used to read and write various Comma Separated Value (CSV) format files.

Commons Daemon

Realize turning ordinary Java applications into background services of the system. For example, Tomcat uses this project to start and stop as a service on Linux and Windows.

Commons DBCP

Database connection pool.

Commons DBUtils

It is a JDBC tool component that re-encapsulates the traditional classes for operating databases and can convert the result set into a List.

Commons Digester

​ is a toolset for mapping XML to Java objects.

Commons Email

It is a mail operation component that encapsulates the Java Mail API, provides commonly used mail sending and receiving classes, and simplifies mail operations. This component relies on the Java Mail API.

Commons Exec

Provides some common methods for executing external processes, such as executing exe files or command lines.

Commons FileUpload

Provide file upload function for Web applications or Servlets, file upload components of Struts2 and SpringMVC.

Commons IO

It is a tool class package for processing IO. It extends http://java.io and provides more convenient IO operations.

Commons JCI

Provides a common Java compiler interface.

Commons Lang3

It is a tool class package for processing Java basic object methods. This class package provides operations on basic objects such as characters and arrays, making up for the shortcomings of the basic processing methods of java.lang api.

Commons Launcher

Java applications that can be launched independently across platforms.

Commons Logging

Provide a unified log interface that is lightweight and does not depend on specific implementations. The class package gives middleware/logging tool developers a simple log operation abstraction, allowing program developers to use different specific log implementation tools.

Commons Math

A lightweight self-container package for mathematical and statistical calculation methods, including most commonly used numerical algorithms.

Commons Net

It encapsulates clients of various network protocols and supports FTP, NNTP, SMTP, POP3, Telnet and other protocols.

Commons Pool

Provides a complete set of frameworks for implementing object pooling, as well as several unique object pool implementations, which can effectively reduce the workload when processing object pooling. Class packages are used to improve the calling efficiency of large objects such as file handles, database connections, and socket communications. Simply put, it is a technology that creates objects once and uses them multiple times.

Commons Primitives

Provides a smaller, faster, and easier-to-use support for Java's primitive types.

Commons Validator

Provides a simple, extensible framework to define validators (validation methods) and validation rules in an XML file. Supports internationalization of validation rules and error messages.

Apache HttpClient

It was once a sub-project of Apache Commons and later became independent. HttpClient simplifies various communications between HTTP clients and servers and implements the functions of HTTP client programs (that is, browser programs).

Guava

Google utility library.

FastJson

Efficient Json processing library.

Orika

Efficient Bean mapping framework.

The above is the detailed content of What are the commonly used tools in JAVA development?. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

Java数据结构之AVL树详解Java数据结构之AVL树详解Jun 01, 2022 am 11:39 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。

一文掌握Java8新特性Stream流的概念和使用一文掌握Java8新特性Stream流的概念和使用Jun 23, 2022 pm 12:03 PM

本篇文章给大家带来了关于Java的相关知识,其中主要整理了Stream流的概念和使用的相关问题,包括了Stream流的概念、Stream流的获取、Stream流的常用方法等等内容,下面一起来看一下,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft