- 授权协议: Apache
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: https://gitee.com/ifeilong/feilong-core
- 软件文档: https://gitee.com/ifeilong/feilong-core
软件介绍
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>1.12.10</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>