feilong-core让Java开发更简便的工具包
注意: 此项目已经封版, 不再开发, 请使用新版本 https://www.oschina.net/p/feilong ,提供更多的功能
Note: The feilong-core project is now end of life, and is no longer being developed. It has been replaced by the feilong project, which offer more features and more flexibility.
focus on J2SE,是 feilong platform 项目的核心项目
详细的帮助文档 http://feilong-core.mydoc.io/
1. 简介:
-
让你从
大量重复
的底层代码中脱身,提高工作效率
; -
让你的代码
更简炼
,易写
、易读
、易于维护
2. 使用feilong-core的理由:
-
有常用的工具类 (如 小巧实用日期处理 - DateUtil ,集合处理利器 - CollectionsUtil 等)
-
有常用的JAVA常量类 (如 常用时间模式 — DatePattern , 常用时间间隔 —TimeInterval 等)
-
不必要的
Exception
转成了RuntimeException
,减少不必要的代码 -
国内
中文注释
最完善的API -
有完善的单元测试
3. 一图概述:
4. Maven使用配置
feilong-core jar你可以在 仓库 浏览
在maven pom.xml 中,您可以通过以下方式来配置:
<project> <properties> <version.feilong-platform>2.1.0</version.feilong-platform> </properties> <repositories> <repository> <id>feilong-repository</id> <url>https://raw.github.com/venusdrogon/feilong-platform/repository</url> </repository> </repositories> <dependencies> <dependency> <groupId>com.feilong.platform</groupId> <artifactId>feilong-core</artifactId> <version>${version.feilong-platform}</version> </dependency> </dependencies> </project>
5. 帮助:
评论