Activiti的是一个轻量级的工作流程和业务流程管理(BPM)。面向商务人士,开发人员和系统管理员。其核心是一个Java的超高速和坚如磐石的 BPMN2 的流程引擎。它是开源的,在Apache许可证下发布。
Activiti可在任何Java应用程序、服务器、群集或云中运行。 它与Spring完美集成,非常轻巧,基于简单的概念。
Activiti的是一个轻量级的工作流程和业务流程管理(BPM)。面向商务人士,开发人员和系统管理员。(Activiti is a light-weight workflow and Business Process Management (BPM) Platform targeted at business people, developers and system admins.)
Activiti的是一个轻量级的工作流程和业务流程管理(BPM)。面向商务人士,开发人员和系统管理员。其核心是一个Java的超高速和坚如磐石的 BPMN2 的流程引擎。它是开源的,在Apache许可证下发布。
Activiti可在任何Java应用程序、服务器、群集或云中运行。 它与Spring完美集成,非常轻巧,基于简单的概念。
Name With Owner | Jaspersoft/jasperreports |
---|---|
Primary Language | Java |
Program language | HTML (Language Count: 2) |
Platform | |
License: | GNU Lesser General Public License v3.0 |
Created At | 2016-09-05 10:43:22 |
---|---|
Pushed At | 2025-04-04 16:37:16 |
Last Commit At | 2025-04-04 19:33:16 |
Release Count | 150 |
Last Release Name | 7.0.2 (Posted on 2025-03-12 19:54:45) |
First Release Name | jr-0-5-1 (Posted on 2004-01-11 18:48:09) |
Stargazers Count | 1.1k |
---|---|
Watchers Count | 74 |
Fork Count | 418 |
Commits Count | 10.8k |
Has Issues Enabled | |
Issues Count | 424 |
Issue Open Count | 26 |
Pull Requests Count | 6 |
Pull Requests Open Count | 13 |
Pull Requests Close Count | 68 |
Has Wiki Enabled | |
---|---|
Is Archived | |
Is Fork | |
Is Locked | |
Is Mirror | |
Is Private |
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.
Activiti JIRA: https://activiti.atlassian.net
If you want to read more about our Repositories structure you can read our GitBook.
Force language level 8, to fail-fast when (accidentally) using features available only in newer Java versions.
8.0 ...
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
so it becomes something like -target 1.8 -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, Inc. and/or its affiliates
Copyright $today.year Alfresco, Inc. and/or its affiliates.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
/**
: it is not a valid javadoc.Alfresco, Inc. and/or its affiliates
@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 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