[Design of JBoss jBPM] - Re: Is it possible to avoid hibernate?
by tom.baeyens@jboss.com
"jorgemoralespou_2" wrote : I started by trying to create a new RepositoryService, that hold Deployments in memory (probably a JBossCache in the future). For that I have my MemoryRepositoryService (with its binding in jbpm.user.wire.bindings.xml). I could reuse most of the commands in RepositoryService, but createDeployment has to create a new DeploymentImpl, since the one in the core depends on hibernate (LOB). And from there I have to replicate tons of classes that could have done it if it would have referenced NewDeployment instead of DeploymentImpl.
usually i use protected as the default, so you could consider inheriting the existing services and just overwrite one method with your custom command.
if there is a simple way on how we can make a small change to make your customizations easier, post them very concrete and we'll always consider them.
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4244930#4244930
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4244930
16 years, 8 months
[Design of JBoss jBPM] - Re: Whether the JBPM4.0 support informix
by superjoo
Oh,my god!I'm so sorry.
| <session-factory>
|
| <property name="hibernate.dialect">
| org.hibernate.dialect.InformixDialect
| </property>
| <property name="hibernate.connection.driver_class">
| com.informix.jdbc.IfxDriver
| </property>
| <property name="hibernate.connection.url">
| jdbc:informix-sqli://192.251.1.150:1528/xjtcyy:informixserver=vseal
| </property>
| <property name="hibernate.connection.username">xwj</property>
| <property name="hibernate.connection.password">xwj123</property>
| <property name="hibernate.hbm2ddl.auto">create-drop</property>
| <property name="hibernate.format_sql">true</property>
| <property name="myeclipse.connection.profile">informix</property>
| <property name="connection.url">jdbc:informix-sqli://192.251.1.150:1528/xjtcyy:informixserver=vseal</property>
| <property name="connection.username">xwj</property>
| <property name="connection.password">xwj123</property>
| <property name="connection.driver_class">com.informix.jdbc.IfxDriver</property>
| <property name="dialect">org.hibernate.dialect.InformixDialect</property>
|
| <mapping resource="jbpm.repository.hbm.xml" />
| <mapping resource="jbpm.execution.hbm.xml" />
| <mapping resource="jbpm.history.hbm.xml" />
| <mapping resource="jbpm.task.hbm.xml" />
| <mapping resource="jbpm.jpdl.hbm.xml" />
| <mapping resource="jbpm.identity.hbm.xml" />
|
| </session-factory>
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4244898#4244898
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4244898
16 years, 8 months