Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Spring Cloud Alibaba | 26,464 | 36 | a day ago | 36 | July 25, 2023 | 417 | apache-2.0 | Java | ||
Spring Cloud Alibaba provides a one-stop solution for application development for the distributed solutions of Alibaba middleware. | ||||||||||
Springall | 25,866 | 2 months ago | 29 | mit | Java | |||||
循序渐进,学习Spring Boot、Spring Boot & Shiro、Spring Batch、Spring Cloud、Spring Cloud Alibaba、Spring Security & Spring Security OAuth2,博客Spring系列源码:https://mrbird.cc | ||||||||||
Kuboard Press | 19,085 | a month ago | 365 | JavaScript | ||||||
Kuboard 是基于 Kubernetes 的微服务管理界面。同时提供 Kubernetes 免费中文教程,入门教程,最新版本的 Kubernetes v1.23.4 安装手册,(k8s install) 在线答疑,持续更新。 | ||||||||||
Springboot Learning | 15,344 | 17 days ago | 69 | Java | ||||||
《Spring Boot基础教程》,2.x版本持续连载中!点击下方链接直达教程目录! | ||||||||||
Springcloudlearning | 15,253 | 2 years ago | 45 | Java | ||||||
《史上最简单的Spring Cloud教程源码》 | ||||||||||
Mall Learning | 12,336 | 10 days ago | 27 | apache-2.0 | Java | |||||
mall学习教程,架构、业务、技术要点全方位解析。mall项目(50k+star)是一套电商系统,使用现阶段主流技术实现。涵盖了SpringBoot 2.3.0、MyBatis 3.4.6、Elasticsearch 7.6.2、RabbitMQ 3.7.15、Redis 5.0、MongoDB 4.2.5、Mysql5.7等技术,采用Docker容器化部署。 | ||||||||||
Mall Swarm | 10,654 | a month ago | 41 | apache-2.0 | Java | |||||
mall-swarm是一套微服务商城系统,采用了 Spring Cloud 2021 & Alibaba、Spring Boot 2.7、Oauth2、MyBatis、Docker、Elasticsearch、Kubernetes等核心技术,同时提供了基于Vue的管理后台方便快速搭建系统。mall-swarm在电商业务的基础集成了注册中心、配置中心、监控中心、网关等系统功能。文档齐全,附带全套Spring Cloud教程。 | ||||||||||
Activiti | 9,623 | 1,969 | 60 | 2 hours ago | 50 | February 06, 2020 | 562 | apache-2.0 | Java | |
Activiti is a light-weight workflow and Business Process Management (BPM) Platform targeted at business people, developers and system admins. Its core is a super-fast and rock-solid BPMN 2 process engine for Java. It's open-source and distributed under the Apache license. Activiti runs in any Java application, on a server, on a cluster or in the cloud. It integrates perfectly with Spring, it is extremely lightweight and based on simple concepts. | ||||||||||
Awesome Architecture | 8,359 | 3 years ago | 7 | |||||||
架构师技术图谱,助你早日成为架构师 | ||||||||||
Springcloud Learning | 7,097 | 7 months ago | 22 | Java | ||||||
Spring Cloud基础教程,持续连载更新中 |
Homepage: http://activiti.org
Activiti is a light-weight workflow and Business Process Management (BPM) Platform targeted at business people, developers and system admins. Its core is a super-fast and rock-solid BPMN 2 process engine for Java. It's open-source and distributed under the Apache license. Activiti runs in any Java application, on a server, on a cluster or in the cloud. It integrates perfectly with Spring, it is extremely lightweight and based on simple concepts.
**NOTE: We moved to the master branch all the content of the development branch that we were using to design and code the next major version of the project. If you want to contribute with version 6.x please look at the 6.x branch.**
If you want to read more about our Repositories structure you can read our GitBook.
Force language level 17, to fail-fast when (accidentally) using features available only in newer Java versions.
17 ...
Avoid that changes in some resources are ignored in the next run/debug (and you are forced to use mvn)
!?*.java
(remove other content)Avoid a StackOverflowError
when building
-J-Xss1024k
Recommended code style: use the Google Java Style Guide with editorconfig
.editorconfig
what has definition for indents, file encoding, line endings.Set manually the correct file encoding (UTF-8 except for properties files) and end-of-line characters (unix):
Unix
UTF-8
ISO-8859-1
ISO-8859-1
as specified by the java ResourceBundle
contract.Set manually the correct number of spaces when pressing tab:
off
4
4
8
off
2
2
4
Set the correct file headers (do not include @author or a meaningless javadoc):
File Header
@author
lines in source files, see FAQ below.Set the correct license header
Alfresco Software
Why do you not accept @author
lines in your source code?
Because the author tags in the java files are a maintenance nightmare
Because the author tags promote code ownership, which is bad in the long run.
Credit to the authors is given:
To format files with the required license:
mvn license:format
To check if your code style respect all the rules:
mvn checkstyle:check -DskipCheckstyle=false
To generate the maven site:
mvn clean site site:stage
the site will be generated at: target/staging/index.html
Running on GH Actions.
For Dependabot PRs to be validated by CI, the label "CI" should be added to the PR.
Requires the following secrets to be set:
Name | Description |
---|---|
BOT_GITHUB_TOKEN | Token to launch other builds on GH |
BOT_GITHUB_USERNAME | Username to issue propagation PRs |
NEXUS_USERNAME | Internal Maven repository username |
NEXUS_PASSWORD | Internal Maven repository password |
SLACK_NOTIFICATION_BOT_TOKEN | Token to notify slack on failure |