您好,登錄后才能下訂單哦!
這篇文章主要介紹“JAVA中常用的類庫整理”,在日常操作中,相信很多人在JAVA中常用的類庫整理問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”JAVA中常用的類庫整理”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
標簽(空格分隔): 技術棧
[toc]
加解密功能封裝 例:
<dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.12</version> </dependency>
/* * MD5加密 */ DigestUtils.md5Hex("123456")
工具類封裝 例:
<dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.9</version> </dependency>
public static void main(String[] args) { System.out.println(StringUtils.isEmpty(null)); System.out.println(StringUtils.isEmpty("")); System.out.println(ObjectUtils.anyNotNull(null, null)); System.out.println(ObjectUtils.anyNotNull(11, null)); System.out.println(RandomUtils.nextBoolean()); System.out.println(RandomUtils.nextBoolean()); System.out.println(SystemUtils.JAVA_HOME); }
IO工具封裝(FileUtils、IOUtils等) 例:
<dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.6</version> </dependency>
集合功能封裝 例:
<dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>4.0</version> </dependency>
<dependency> <groupId>commons-pool</groupId> <artifactId>commons-pool</artifactId> <version>1.6</version> </dependency>
Apache開源組織提供的用于操作JAVA BEAN的工具包
<dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.9.3</version> </dependency>
MyBatis 分頁插件
<dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> <version>4.1.6</version> </dependency>
<dependency> <groupId>com.auth0</groupId> <artifactId>java-jwt</artifactId> <version>3.8.1</version> </dependency>
<dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>0.9.10</version> </dependency>
<dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>4.6.1</version> </dependency>
<dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-validator</artifactId> <version>6.0.17.Final</version> </dependency>
<dependency> <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-core</artifactId> <version>${metrics.version}</version> </dependency>
Lombok能以簡單的注解形式來簡化java代碼,提高開發人員的開發效率
<dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.16.20</version> <scope>provided</scope> </dependency>
注解:
@Data
減少編寫日志的組件
<dependency> <groupId>wiki.xsx</groupId> <artifactId>spring-boot-starter-slf4j</artifactId> <version>RELEASE</version> </dependency>
到此,關于“JAVA中常用的類庫整理”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。