I have been using JBPM5.3 for some months and then I switch to JBPM5.4.

After I download JBPM5.4.Final full installer, I thought the DB Set up will be exactly the same with JBPM5.3 full installerhttps://community.jboss.org/wiki/SetUpJBPM53ToUseMSSQLServer2008

But I realized that some things has changed and at the time when I write this, the guide for changing Database in JBPM5.4 full installer is still outdatedhttp://docs.jboss.org/jbpm/v5.4/userguide/ch.installer.html#d0e609

A. What I Am Going To Do

1. I will change the Database setting of jbpm5.4 final full installer and point it to use MS SQL Server 2008

2. The Database driver used is jtds-1.2.4

3. Although it is possible to have separate database for Task and Process data, in this setup I will use only one Database for all the Task database tables and all the Process database tables.

4. I do this set up using Windows XP 64 Bit

5. apache ant version used is Apache Ant 1.8.4

6. jdk used is jdk 1.6 (set in Windows Environment variable as JAVA_HOME)

7. I use 7-zip to help me modify files inside a .war file

B. The Setup Steps

1. JBPM5.4 final full installer comes with almost every needed component, except eclipse (optional). But I want the eclipse, so I download eclipse-java-helios-SR2-win32-x86_64.zip and put it into

jbpm-installer\lib folder

2. Because my OS is 64 bit version, I have to do a modification to the build.xml file found in jbpm-installer folder. So I changed this part

  1. <!-- Download Eclipse -->
  2.   <condition property="download.type" value="win32">
  3.     <os family="windows" />
  4.   </condition>

to

  1. <!-- Download Eclipse -->
  2.   <condition property="download.type" value="win32-x86_64">
  3.     <os family="windows" />
  4.   </condition>

3. Now its time to set up the Hibernate settings, mostly we will make changes to the hibernate dialect, lets open jbpm-installer\db folder.

4. I am not sure how each file is used here in jbpm5.4 since the official guide still reflect jbpm5.3 files, so here is what I do, I start with opening jbpm-installer\db\jbpm-persistence-JPA1.xml

I changed:

  1. <properties>
  2.       <property name="hibernate.dialect" value="org.hibernate.dialect.Oracle10gDialect"/>
  3.       <property name="hibernate.max_fetch_depth" value="3"/>

to

  1. <properties>
  2.       <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>
  3.       <property name="hibernate.max_fetch_depth" value="3"/>

5. Then I open jbpm-installer\db\jbpm-persistence-JPA2.xml

I changed:

  1. <properties>
  2.       <property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQLDialect" />
  3.       <property name="hibernate.max_fetch_depth" value="3" />

to

  1. <properties>
  2.       <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect" />
  3.       <property name="hibernate.max_fetch_depth" value="3" />

6. Lets continue, and open jbpm-installer\db\task-persistence-JPA1.xml

I changed:

  1. <properties>
  2.       <property name="hibernate.dialect" value="org.hibernate.dialect.Oracle10gDialect"/>
  3.       <property name="hibernate.connection.driver_class" value="org.h2.Driver"/>
  4.       <property name="hibernate.connection.url" value="jdbc:h2:tcp://localhost/runtime/task" />
  5.       <property name="hibernate.connection.username" value="sa"/>
  6.       <property name="hibernate.connection.password" value=""/>

to

  1. <properties>
  2.       <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>
  3.       <property name="hibernate.connection.driver_class" value="net.sourceforge.jtds.jdbc.Driver"/>
  4.       <property name="hibernate.connection.url" value="jdbc:jtds:sqlserver://DBName:1433/MyJBPMDB" />
  5.       <property name="hibernate.connection.username" value="myuser"/>
  6.       <property name="hibernate.connection.password" value="mypassword"/>

7. Open jbpm-installer\db\task-persistence-JPA2.xml

I changed:

  1. <properties>
  2.       <property name="hibernate.dialect" value="org.hibernate.dialect.Oracle10gDialect"/>         
  3.       <property name="hibernate.max_fetch_depth" value="3"/>

to

  1. <properties>
  2.       <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>         
  3.       <property name="hibernate.max_fetch_depth" value="3"/>

8. Lets navigate to other file in other folder, lets open jbpm-installer\task-service\resources\META-INF\persistence.xml

I changed:

  1. <properties>
  2.       <property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect"/>
  3.       <property name="hibernate.connection.driver_class" value="org.h2.Driver"/>
  4.       <property name="hibernate.connection.url" value="jdbc:h2:tcp://localhost/runtime/task" />
  5.       <property name="hibernate.connection.username" value="sa"/>
  6.       <property name="hibernate.connection.password" value=""/>

to

  1. <properties>
  2.       <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>
  3.       <property name="hibernate.connection.driver_class" value="net.sourceforge.jtds.jdbc.Driver"/>
  4.       <property name="hibernate.connection.url" value="jdbc:jtds:sqlserver://DBName:1433/MyJBPMDB" />
  5.       <property name="hibernate.connection.username" value="myuser"/>
  6.       <property name="hibernate.connection.password" value="mypassword"/>

9. Ok, lets dig into .war files in the lib folder, (I use 7-zip to help me modify files inside .war files), lets open jbpm-installer\lib folder

10. Open jbpm-installer\lib\jbpm-gwt-console-server-5.4.0.Final-EE6.war\WEB-INF\classes\META-INF\persistence.xml

I changed:

  1. <properties>
  2.       <property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect" />
  3.       <property name="hibernate.max_fetch_depth" value="3" />

to

  1. <properties>
  2.       <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect" />
  3.       <property name="hibernate.max_fetch_depth" value="3" />

11. Next, Open jbpm-installer\lib\jbpm-human-task-war-5.4.0.Final-EE6.war\WEB-INF\classes\META-INF\persistence.xml

I changed:

  1. <properties>
  2.       <property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect"/>         
  3.       <property name="hibernate.max_fetch_depth" value="3"/>

to

  1. <properties>
  2.       <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>         
  3.       <property name="hibernate.max_fetch_depth" value="3"/>

12. Allright, seems like we are done changing dialects, lets provide our jtds jar. put jtds-1.2.4.jar into jbpm-installer\db\driver folder

13. next, we need to provide an xml file that will be used by jboss AS to recognize our jtds later, so Create a file called sqlserver_module.xml and put it in jbpm-installer\db folder

The file content is:

  1. <module xmlns="urn:jboss:module:1.0" name="net.sourceforge.jtds">
  2.    <resources>
  3.      <resource-root path="jtds-1.2.4.jar"/>
  4.    </resources>
  5.    <dependencies>
  6.       <module name="javax.api"/>
  7.       <module name="javax.transaction.api"/>
  8.     </dependencies>
  9. </module>

14. Wondered how the ant build will recognize our sqlserver_module.xml later? Happens to me too at first, lets open jbpm-installer\build.properties file

Look at this section:

  1. # data base related properties
  2. db.driver.jar=${install.home}/db/driver/${db.driver.jar.name}
  3. db.driver.module.dir=${jboss.home}/modules/${db.driver.module.prefix}/main/
  4. # default is H2
  5. db.name=h2
  6. db.driver.jar.name=${db.name}.jar
  7. db.driver.download.url=http://repo1.maven.org/maven2/com/h2database/h2/${H2.version}/h2-${H2.version}.jar
  8. #other options are mysql
  9. #  db.name=mysql
  10. #  db.driver.module.prefix=com/mysql
  11. #  db.driver.jar.name=${db.name}-connector-java.jar
  12. #  db.driver.download.url=https://repository.jboss.org/nexus/service/local/repositories/central/content/mysql/mysql-connector-java/5.1.18/mysql-connector-java-5.1.18.jar
  13. #postresql
  14. #  db.name=postresql
  15. #  db.driver.module.prefix=org/postgresql
  16. #  db.driver.jar.name=${db.name}-jdbc.jar
  17. #  db.driver.download.url=https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads/postgresql/postgresql/9.1-902.jdbc4/postgresql-9.1-902.jdbc4.jar

lets comment out the h2 setting and make our own sqlserver setting like this:

  1. # data base related properties
  2. db.driver.jar=${install.home}/db/driver/${db.driver.jar.name}
  3. db.driver.module.dir=${jboss.home}/modules/${db.driver.module.prefix}/main/
  4. # default is H2
  5. #db.name=h2
  6. #db.driver.jar.name=${db.name}.jar
  7. #db.driver.download.url=http://repo1.maven.org/maven2/com/h2database/h2/${H2.version}/h2-${H2.version}.jar
  8. #other options are mysql
  9. #  db.name=mysql
  10. #  db.driver.module.prefix=com/mysql
  11. #  db.driver.jar.name=${db.name}-connector-java.jar
  12. #  db.driver.download.url=https://repository.jboss.org/nexus/service/local/repositories/central/content/mysql/mysql-connector-java/5.1.18/mysql-connector-java-5.1.18.jar
  13. #postresql
  14. #  db.name=postresql
  15. #  db.driver.module.prefix=org/postgresql
  16. #  db.driver.jar.name=${db.name}-jdbc.jar
  17. #  db.driver.download.url=https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads/postgresql/postgresql/9.1-902.jdbc4/postgresql-9.1-902.jdbc4.jar
  18. #sqlserver
  19. db.name=sqlserver
  20. db.driver.module.prefix=net/sourceforge/jtds
  21. db.driver.jar.name=jtds-1.2.4.jar

because or db.name is sqlserver, our sqlserver_module.xml will be recognized by the ant build later on.

If you really want to know the reason, open jbpm-installer\build.xml and look at this section

  1.     <copy file="db/${db.name}_module.xml" tofile="${db.driver.module.dir}/module.xml" />

15. ok, now lets deal with the jboss AS 7 standalone setting, open jbpm-installer\standalone.xml

we need to do two things here, modify data source and make jboss as recognize our jtds driver, so change this section:

  1. <datasource jta="true" jndi-name="java:jboss/datasources/jbpmDS" pool-name="H2DS" enabled="true" use-java-context="true" use-ccm="true">
  2.                     <connection-url>jdbc:h2:~/jbpm</connection-url>
  3.                     <driver>h2</driver>
  4.                     <pool>
  5.                         <min-pool-size>1</min-pool-size>
  6.                         <max-pool-size>4</max-pool-size>
  7.                         <prefill>false</prefill>
  8.                         <use-strict-min>false</use-strict-min>
  9.                         <flush-strategy>FailingConnectionOnly</flush-strategy>
  10.                     </pool>
  11.                     <security>
  12.                         <user-name>sa</user-name>
  13.                     </security>
  14.                     <validation>
  15.                         <check-valid-connection-sql>SELECT 1</check-valid-connection-sql>
  16.                         <validate-on-match>false</validate-on-match>
  17.                         <background-validation>false</background-validation>
  18.                     </validation>
  19.                 </datasource>
  20.                 <drivers>
  21.                     <driver name="h2" module="com.h2database.h2">
  22.                         <xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>
  23.                     </driver>
  24.                 </drivers>

to

  1.                <datasource jndi-name="java:jboss/datasources/jbpmDS" pool-name="H2DS" enabled="true" jta="true" use-java-context="true" use-ccm="true">
  2.                     <connection-url>jdbc:jtds:sqlserver://DBName:1433/MyJBPMDB</connection-url>
  3.                     <driver>JTDS</driver>
  4.                     <pool>
  5.                         <min-pool-size>1</min-pool-size>
  6.                         <max-pool-size>4</max-pool-size>
  7.                         <prefill>false</prefill>
  8.                         <use-strict-min>false</use-strict-min>
  9.                         <flush-strategy>FailingConnectionOnly</flush-strategy>
  10.                     </pool>
  11.                     <security>
  12.                        <user-name>myuser</user-name>
  13.                        <password>mypassword</password>
  14.                     </security>
  15.                     <validation>
  16.                        <check-valid-connection-sql>SELECT 1</check-valid-connection-sql>
  17.                        <validate-on-match>false</validate-on-match>
  18.                        <background-validation>false</background-validation>
  19.                     </validation>
  20.                 </datasource>
  21.                 <drivers>
  22.                    <driver name="JTDS" module="net.sourceforge.jtds">
  23.                             <driver-class>net.sourceforge.jtds.jdbc.Driver</driver-class> 
  24.                     </driver>
  25.                                          <driver name="h2" module="com.h2database.h2">
  26.                                                  <xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>
  27.                                         </driver>
  28.                 </drivers>

16. Phew, quite a lot files that we have configured. at this point you may want to copy and backup the whole jbpm-installer folder, just in case you missed some configuration and caused error in the installation process later, who knows, things like that can happen, so just to be safe...

C. Lets Install it

1. use our windows cmd and go to jbpm-installer folder.

2. run "ant install.demo"

3. in my case, this happen, so after ant install.demo finished successfully, I need to go to

jbpm-installer\jboss-as-7.1.1.Final\standalone\deployments\jbpm-human-task-war.war\WEB-INF\classes\META-INF\persistence.xml

and modify it from

  1. <properties>
  2.       <property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect"/>         
  3.       <property name="hibernate.max_fetch_depth" value="3"/>
  4.      <property name="hibernate.hbm2ddl.auto" value="create" />

to

  1. <properties>
  2.       <property name="hibernate.dialect" value="org.hibernate.dialect.SQLServerDialect"/>         
  3.       <property name="hibernate.max_fetch_depth" value="3"/>
  4.       <property name="hibernate.hbm2ddl.auto" value="update" />

4. run "ant install.demo.db" to install our db files

5. run "ant start.human.task" to let it create the task tables in the database

6. stop that cmd (hint: ctrl+c and say Y)

5. run "ant start.jboss" to start the JBOSS AS server

6. Look at your database, and verify if dbo.Task table is still there.

7. Enjoy your JBPM5.4 with MS SQL Server 2008

Set up JBPM5.4 Final Installer to use MS SQL Server 2008 using JTDS(转)的更多相关文章

  1. 关于SQL Server 安装程序在运行 Windows Installer 文件时遇到错误

    前几日安装sql server2008r2 的时候碰到这个问题: 出现以下错误: SQL Server 安装程序在运行 Windows Installer 文件时遇到错误. Windows Insta ...

  2. 静默安装、授权及卸载Microsoft SQL Server、NET Framework、Windows Installer 、ArcGIS License Manager、ArcGIS Engine(Silent install、uninstall and Authorization.. .through Setup Factory)基于Setup Factory

    通过Setup Factory写的代码大概有1700行,所以就不整理了.思路如下: 静默安装都是通过去Microsoft 和Esri的官网找到静默安装的命令,然后File.Run(...)或者Shel ...

  3. (转) [it-ebooks]电子书列表

    [it-ebooks]电子书列表   [2014]: Learning Objective-C by Developing iPhone Games || Leverage Xcode and Obj ...

  4. SQL Server2016升级前几点自检

    SQL Server2016已经出来一段时间了,而且最新的SP1包也于2016年11月18日正式发布,各种新的特性推出让我们跃跃欲试.那么对于我们真实的业务环境,特别是生产环境要不要"跟风& ...

  5. Hibernate(4)——主键生成策略、CRUD 基础API区别的总结 和 注解的使用

    俗话说,自己写的代码,6个月后也是别人的代码……复习!复习!复习!涉及的知识点总结如下: hibernate的主键生成策略 UUID 配置的补充:hbm2ddl.auto属性用法 注解还是配置文件 h ...

  6. Hibernate4.2.4入门(一)——环境搭建和简单例子

    一.前言 发下牢骚,这段时间要做项目,又要学框架,搞得都没时间写笔记,但是觉得这知识学过还是要记录下.进入主题了 1.1.Hibernate简介 什么是Hibernate?Hibernate有什么用? ...

  7. Hibernate 系列 02 - Hibernate介绍及其环境搭建

    引导目录: Hibernate 系列教程 目录 昨晚喝多了,下午刚清醒,继续搞Hibernate.走起. 觉得还行的话,记得点赞哈,给我这个渣渣点学习的动力.有错误的话也请指出,省的我在错误上走了不归 ...

  8. (转)内置系统账户:Local system/Network service/Local Service 区别

    最近会转载一些 MSSQL 基础相关的文章. 参考文献: http://www.cnblogs.com/xianspace/archive/2009/04/05/1429835.html 前言 今天在 ...

  9. 小心SQL SERVER 2014新特性——基数评估引起一些性能问题

    在前阵子写的一篇博文"SQL SERVER 2014 下IF EXITS 居然引起执行计划变更的案例分享"里介绍了数据库从SQL SERVER 2005升级到 SQL SERVER ...

随机推荐

  1. 在Eclipse的DDMS中查看手机data文件夹中的内容

    在模拟器状态下,在Eclipse的DDMS中的File Explorer下查看手机data/data中的内容是件非常轻松的事情,特别是查看databases 但是在真机模式下就全然不是那么一回事了,在 ...

  2. 分享使用method swizzling的经历

    原文:http://www.cnblogs.com/lujianwenance/p/5800232.html   这是一个很蛋疼的过程,先说一下需求,列表页预加载更多(60%).当我看到这个需求的时候 ...

  3. OS X EL Capitan安装Cocoapods 报错ERROR

    升级OS X EL Capitan10.11之后,原来的pod不能用了,重新安装cocoapods,发现 在运行 “sudo gem install cocoapods” 的时候出现问题: ERROR ...

  4. Javascript三元条件运算符

    今天谈一个小知识点,三元运算符.三元运算,顾名思义会有三个要素,表达式的大致组成为condition ? expr1 : expr2:一个语句加两个表达式.问号之前为判断语句.如果为真,则执行第一个表 ...

  5. gulp+browserSync+nodemon 实现express 全端自动刷新的实践

    学习过程宝宝心里苦,不能怨政府.. 兴趣所致,一直放不下nodejs的学习,时隔多日,又把express捡起来打算重新再学学,一直没什么太大的长进,和实际的项目经验.真的醉了,太懒了. 今天在重新研究 ...

  6. 06_关于SqlSession

    一.SqlSession适用范围 (1).SqlSessionFactoryBuilder 通过SqlSessionFactoryBuilder创建会话工厂SqlSessionFactory 将Sql ...

  7. 2、Charm Bracelet( poj 3624)简单0-1背包

    题意:有n件手镯,总重量不能超过M,每个手镯有一个体重W[i]和魅力V[i],问在不超过M的情况下能获得的魅力总和 思路:把M当背包总容量,用0-1背包写 代码: #include <iostr ...

  8. 【转】JSON简介以及用法代码汇总

    什么是JSON? JavaScript 对象表示法(JavaScript Object Notation). JSON是一种轻量级的数据交换格式,某个JSON格式的文件内部譬如可以长成这样: { &q ...

  9. c++ explicit 用法摘抄

    笔记 //Student.h[explicit修饰] Student (int n): Student doh(); doh = ; //没有 explicit=>doh = Student(5 ...

  10. python 数据字典应用

    一.什么是字典? 字典是Python语言中唯一的映射类型. 映射类型对象里哈希值(键,key)和指向的对象(值,value)是一对多的的关系,通常被认为是可变的哈希表. 字典对象是可变的,它是一个容器 ...