技术开发 频道

java开源工作流(workflow)---jBPM学习心得总结

  【IT168技术文档1. jBPM的简单介绍

  jBPM是JBOSS下的一个开源java工作流项目,该项目提供eclipse插件,基于Hibernate实现数据持久化存储。

  参考

  http://www.jboss.com/products/jbpm

  2. jBPM和myeclipse的冲突

  当eclipse安装了myeclipse和jBPM时候,可能有冲突,具体表现在jBPM的流程设计器不能在eclipse中使用。

  3. Hibernate连接mysql数据库的一般参数

  下面的配置参数,根据需要可以修改:

  jbpmtest是mysql中的schema的名字;

  GBK是字符集,可以根据需要修改;

  username=root,mysql数据库的用户名是root;

  password=mysql ,mysql数据库的用户密码是mysql;

  hibernate.dialect=org.hibernate.dialect.MySQLDialect

  hibernate.connection.driver_class=com.mysql.jdbc.Driver

  hibernate.connection.url=jdbc:mysql://localhost/jbpmtest?useUnicode=true&characterEncoding=GBK

  hibernate.connection.username=root

  hibernate.connection.password=mysql

  hibernate.show_sql=true

  hibernate.c3p0.min_size=1

  hibernate.c3p0.max_size=3

  4. Hibernate连接Oracle数据库的一般参数

  hibernate.dialect=org.hibernate.dialect.Oracle9Dialect

  hibernate.connection.driver_class=oracle.jdbc.driver.OracleDriver

  hibernate.connection.url= jdbcracle:thin:@localhost:1521rcl hibernate.connection.username=jbpm

  hibernate.connection.password=jbpm

0
相关文章