# java-tools-parent **Repository Path**: linlannet/java-tools-parent ## Basic Information - **Project Name**: java-tools-parent - **Description**: JAVA代码核心工具类,包括核心、缓存、系统、脚本处理,数据处理等通用工具方法 - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 1 - **Created**: 2023-07-08 - **Last Updated**: 2025-12-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # java-tools-parent [![License](https://img.shields.io/badge/license-Apache%202-green.svg)](https://www.apache.org/licenses/LICENSE-2.0) ![java version](https://img.shields.io/badge/JAVA-1.8-green.svg) ![gitee star](https://gitee.com/linlannet/java-tools-parent/badge/star.svg) ## 介绍 JAVA代码核心工具类,包括核心、缓存、系统、脚本处理,数据处理等通用工具方法 ## 版本历史 [CHANGELOG](./CHANGELOG.md) ## 子包简介 1. commons-core: 公共的工具核心子包,包含 1. commons-db: 公共的数据库资源类子包 2. commons-script: 公共的JSON工具类子包 3. commons-cache: 公共的缓存工具类子包 4. commons-evn: 公共的环境工具类子包 2. datas-parent:公共的数据处理核心,多数据源链接等工具类子包 ## 技术路径 ### 软件架构 ``` Springboot ``` ### 安装教程 1. mvn clean install 2. mvn clean deploy ### 使用说明 1. 通过依赖使用 ``` ${groupId} ${artifactId} ${project.version} test ``` 2. 直接拷贝打包后的jar包 ## 参与贡献 1. Fork 本仓库 2. 新建 Feat_1.0.0 分支 3. 提交代码 ``` git config user.name linlaninfo git config user.email linlannet@163.com git config --global --list git config --list ``` 4. 新建 Pull Request 5. 创建和提交tag ``` 创建 git tag -a 2.6.0 -m "统一工具包路径,合并之前分散的5个子包" 查看 git tag 提交 git push origin --tags 删除 git tag -d 2.4.1 本地编译:mvn clean install 发布:mvn clean deploy ``` 6. 其他