Flowable 6.6.0 BPMN用户指南 - (4)Spring集成 - 4.6 使用Hibernate 4.2.x的JPA

《Flowable 6.6.0 BPMN用户指南》

1. 入门

2. 配置

3 The Flowable API

4 Flowable 6.6.0 BPMN用户指南 - (4)Spring集成

4.1 ProcessEngineFactoryBean
4.2 事务
4.3 表达式(Expressions)
4.4 自动资源部署(Automatic resource deployment)
4.5 单元测试
4.6 使用Hibernate 4.2.x的JPA

Flowable 6.6.0 用户指南相关文档下载

《精编Flowable 6.6.0 应用程序指南中文PDF版》
《精编Flowable 6.6.0 表单用户指南中文PDF版》

有关Flowable文档的其他资料,参见:

《Flowable文档大全》
Flowable

4.6 使用Hibernate 4.2.x的JPA

When using Hibernate 4.2.x JPA in service task or listener logic in the Flowable engine, an additional dependency to Spring ORM is needed. This is not needed for Hibernate 4.1.x or earlier. The following dependency should be added:

当在Flowable引擎的服务任务或侦听器逻辑中使用Hibernate 4.2.x JPA时,需要额外的Spring ORM依赖。Hibernate 4.1.x或更早版本不需要这样做。应添加以下依赖项:

<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-orm</artifactId>
  <version>${org.springframework.version}</version>
</dependency>

你可能感兴趣的:(Flowable,6.6.0,BPMN用户指南,-,(4)Spring)