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完美集成,非常轻巧,基于简单的概念。
名稱與所有者 | Jaspersoft/jasperreports |
---|---|
主編程語言 | Java |
編程語言 | HTML (語言數: 2) |
平台 | |
許可證 | GNU Lesser General Public License v3.0 |
創建於 | 2016-09-05 10:43:22 |
---|---|
推送於 | 2025-05-30 14:37:01 |
最后一次提交 | 2025-05-30 17:36:09 |
發布數 | 151 |
最新版本名稱 | 7.0.3 (發布於 2025-05-02 11:30:29) |
第一版名稱 | jr-0-5-1 (發布於 2004-01-11 18:48:09) |
星數 | 1.2k |
---|---|
關注者數 | 75 |
派生數 | 421 |
提交數 | 10.8k |
已啟用問題? | |
問題數 | 433 |
打開的問題數 | 31 |
拉請求數 | 6 |
打開的拉請求數 | 13 |
關閉的拉請求數 | 69 |
已啟用Wiki? | |
---|---|
已存檔? | |
是復刻? | |
已鎖定? | |
是鏡像? | |
是私有? |
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