JBPM中使用Hibernate
在JBPM中可以通过environment获得各种服务和接口。
1.在JBPM中获得Hibernate的session的方法为:
EnvironmentImpl environment = ((EnvironmentFactory)processEngine).openEnvironment(); Session session = environment.get(Session.class);
其中EnvironmentImpl environment = ((EnvironmentFactory)processEngine).openEnvironment();是获得JBPM的环境。
同样,如果想要获得比如IdentitySession接口服务,只需如下写:
IdentitySession identitySession = environment.get(IdentitySession.class);
这样就可以直接操作IdentitySession 接口,而不用关心实现类了。
相关推荐
whileinsist 2017-09-08
MayMatrix 2017-09-08
xnuzfm 2014-03-11
spprogrammer 2013-12-18
Gin工作室 2013-11-13
Gexrior 2012-08-25
新开源牛海龙 2012-02-18
tianhennan 2011-07-22
MayMatrix 2017-01-05
特 2016-10-21
HEERY 2013-06-29
什么什么高手 2013-02-27
易鲸捷大数据库 2013-01-05
bianruifeng 2012-08-27
CherrylinORC 2012-07-31
园搬家测试账号 2011-12-09
特 2011-10-12