[JBoss Seam] - TD2B YAMAHA FACTORY ROADRACER STOLEN
by HRH
MY 1971 YAMAHA TD2B FACTORY ROADRACE BIKE WAS STOLEN.
THE ENGINE AND FRAME NUMBERS ARE IDENTICAL. DS6RR900532.
IT WAS STOLEN BY DONALD LEE KIMBRELL WHOM CURRENTLY RESIDES IN SOUTH CAROLINA AND WORKS AS A WELDER AT A NUCLEAR PLANT WITH HIS WIFE BECKY. KIMBRELL IS APPROXIMATELY 70 YEARS OLD.
KIMBRELL SOLD THE ENGINE TO MORRIS BURNS LOCKE OF HUNTSVILLE, ALABAMA AKA BUDDY LOCKE, DECEASED FROM BEING A DOPE FIEND. THE ENGINE WAS LAST SEEN IN OHIO.
KIMBRELL SOLD THE ROLLING CHASSIS FOR $500.00 TO JOE AUSBURN WHOM RESIDES IN BIRMINGHAM, ALABAMA. THAT IS THE CORRECT SPELLING OF AUSBURN'S NAME.
ANYONE KNOWING THE WHEREABOUTS OF MY ENGINE OR CHASSIS IS ASKED TO CONTACT ME AT osec.sugar(a)gmail.com. I WILL PAY A LARGE REWARD FOR THE RETURN OF MY PROPERTY.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4035672#4035672
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4035672
19 years
[JBoss jBPM] - Re: strange problem with many-to-one mapping in jbpm 3.2
by camunda
Okay, one day later and one small step further, I compared the logs of the JTA-run:
| [org.jbpm.configuration.JbpmContextInfo] creating jbpm context with service factories '[tx, message, scheduler, logging, persistence, authentication]'
| [org.jbpm.JbpmContext] creating org.jbpm.JbpmContext@1a890f
| [com.camunda.toolkit.jbpm.service.CommandServiceBean] executing org.jbpm.command.DeployProcessCommand@1c3dfe...
| [org.jbpm.command.DeployProcessCommand] parse process from String
| [org.jbpm.command.DeployProcessCommand] deploy process: <process-definition name='Test2'><start-state name='start'></start-state></process-definition>
| [org.jbpm.graph.node.NodeTypes] node 'page' will not be available. class 'org.jboss.seam.pageflow.Page' couldn't be loaded
| [org.jbpm.graph.node.NodeTypes] node 'start-page' will not be available. class 'org.jboss.seam.pageflow.Page' couldn't be loaded
| [org.jbpm.persistence.db.DbPersistenceServiceFactory] creating persistence service
| [org.jbpm.persistence.db.DbPersistenceService] creating hibernate session
| [org.jbpm.persistence.db.DbPersistenceService] beginning hibernate transaction
| [STDOUT] Hibernate: select processdef0_.ID_ as ID1_50_, processdef0_.NAME_ as NAME3_50_, processdef0_.DESCRIPTION_ as DESCRIPT4_50_, processdef0_.VERSION_ as VERSION5_50_, processdef0_.ISTERMINATIONIMPLICIT_ as ISTERMIN6_50_, processdef0_.STARTSTATE_ as STARTSTATE7_50_ from JBPM_PROCESSDEFINITION processdef0_ where processdef0_.NAME_=? order by processdef0_.VERSION_ desc limit ?
| [STDOUT] Hibernate: insert into JBPM_PROCESSDEFINITION (NAME_, DESCRIPTION_, VERSION_, ISTERMINATIONIMPLICIT_, STARTSTATE_, CLASS_) values (?, ?, ?, ?, ?, 'P')
| [STDOUT] Hibernate: insert into JBPM_NODE (NAME_, DESCRIPTION_, PROCESSDEFINITION_, ISASYNC_, ISASYNCEXCL_, ACTION_, SUPERSTATE_, CLASS_) values (?, ?, ?, ?, ?, ?, ?, 'R')
| [STDOUT] Hibernate: insert into JBPM_MODULEDEFINITION (NAME_, PROCESSDEFINITION_, CLASS_) values (?, ?, 'C')
| [STDOUT] Hibernate: insert into JBPM_MODULEDEFINITION (NAME_, PROCESSDEFINITION_, STARTTASK_, CLASS_) values (?, ?, ?, 'T')
| [org.jbpm.command.DeployProcessCommand] deployment sucessfull
| [com.camunda.toolkit.jbpm.service.CommandServiceBean] ... finished with org.jbpm.command.DeployProcessCommand@1c3dfe
| [org.jbpm.JbpmContext] closing JbpmContext
| [org.jbpm.svc.Services] closing service 'persistence': org.jbpm.persistence.db.DbPersistenceService@186b2ca
| [org.jbpm.persistence.db.DbPersistenceService] committing hibernate transaction
| [org.jbpm.persistence.db.DbPersistenceService] closing hibernate session
| [org.jbpm.svc.Services] closing service 'tx': org.jbpm.tx.TxService@43f7d7
| [org.jbpm.svc.Services] closing service 'authentication': org.jbpm.security.authentication.DefaultAuthenticationService@444a8b
|
and the local Testrun:
| [main] DEBUG DbPersistenceService : creating hibernate session
| [main] DEBUG DbPersistenceService : beginning hibernate transaction
| [main] DEBUG AbstractDbTestCase :
| [main] DEBUG AbstractDbTestCase : ### starting testProcessDefinitionStartState ####################################################
| [main] INFO DeployProcessCommand : parse process from String
| [main] DEBUG DeployProcessCommand : deploy process: <process-definition name='Test2'><start-state name='start'></start-state></process-definition>
| [main] DEBUG NodeTypes : node 'page' will not be available. class 'org.jboss.seam.pageflow.Page' couldn't be loaded
| [main] DEBUG NodeTypes : node 'start-page' will not be available. class 'org.jboss.seam.pageflow.Page' couldn't be loaded
| Hibernate: select processdef0_.ID_ as ID1_0_, processdef0_.NAME_ as NAME3_0_, processdef0_.DESCRIPTION_ as DESCRIPT4_0_, processdef0_.VERSION_ as VERSION5_0_, processdef0_.ISTERMINATIONIMPLICIT_ as ISTERMIN6_0_, processdef0_.STARTSTATE_ as STARTSTATE7_0_ from JBPM_PROCESSDEFINITION processdef0_ where processdef0_.NAME_=? order by processdef0_.VERSION_ desc limit ?
| Hibernate: insert into JBPM_PROCESSDEFINITION (NAME_, DESCRIPTION_, VERSION_, ISTERMINATIONIMPLICIT_, STARTSTATE_, CLASS_) values (?, ?, ?, ?, ?, 'P')
| Hibernate: insert into JBPM_NODE (NAME_, DESCRIPTION_, PROCESSDEFINITION_, ISASYNC_, ISASYNCEXCL_, ACTION_, SUPERSTATE_, CLASS_) values (?, ?, ?, ?, ?, ?, ?, 'R')
| Hibernate: insert into JBPM_MODULEDEFINITION (NAME_, PROCESSDEFINITION_, CLASS_) values (?, ?, 'C')
| Hibernate: insert into JBPM_MODULEDEFINITION (NAME_, PROCESSDEFINITION_, STARTTASK_, CLASS_) values (?, ?, ?, 'T')
| [main] INFO DeployProcessCommand : deployment sucessfull
| [main] DEBUG AbstractDbTestCase : ### testProcessDefinitionStartState done ####################################################
| [main] DEBUG AbstractDbTestCase :
| [main] DEBUG JbpmContext : closing JbpmContext
| [main] DEBUG Services : closing service 'persistence': org.jbpm.persistence.db.DbPersistenceService@789869
| [main] DEBUG DbPersistenceService : committing hibernate transaction
| Hibernate: update JBPM_PROCESSDEFINITION set NAME_=?, DESCRIPTION_=?, VERSION_=?, ISTERMINATIONIMPLICIT_=?, STARTSTATE_=? where ID_=?
| Hibernate: update JBPM_NODE set PROCESSDEFINITION_=?, NODECOLLECTIONINDEX_=? where ID_=?
| Hibernate: update JBPM_MODULEDEFINITION set PROCESSDEFINITION_=?, NAME_=? where ID_=?
| Hibernate: update JBPM_MODULEDEFINITION set PROCESSDEFINITION_=?, NAME_=? where ID_=?
| [main] DEBUG DbPersistenceService : closing hibernate session
| [main] DEBUG Services : closing service 'tx': org.jbpm.tx.TxService@17e4dee
|
Really eye-catching is, that in the local Testrun, there are some additonal UPDATES, which are missing in the JTA version. I think, they correct the ID's, because the ID's were generated from the database during the first INSERT and so not known in advance. So we really need these second updates for the many-to-one associations.
But why is that missing in the JTA version? May some small implementation issue in jbpm 3.2. I will investigate further.
And I have created a JIRAA-Issue for that: http://jira.jboss.com/jira/browse/JBPM-944
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4035668#4035668
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4035668
19 years
[JBoss/Spring Integration] - Re: Struts spring hibenate in jboss without jboss-deployer
by sriram4java@gmail.com
"sriram4java(a)gmail.com" wrote :
| Maruti.ear
| dao.har
| <my class file>
| map
| <all hibernate mapping files>
| META-INF
| hibernate-service.xml
| maruti.war
| WEB-INF
| lib
| classes
| applicationContext.xml
| applicationContext-hibernate.xml
| applicationContext-service.xml
|
| <all jsp files>
|
| META-INF
| application.xml
| jboss-app.xml
|
|
|
| in applicationContext.xml
|
| <bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
| | <property name="jndiName"><value>java:/hibernate/SessionFactory</value></property>
| | </bean>
|
|
|
|
| in applicationContext-hibernate.xml
|
| <bean id="dao" class="eLog.eTrack.dao.impl.BaseDAOHibernate">
| | <property name="sessionFactory" ref="sessionFactory"/>
| | </bean>
|
|
| while deploying this app ,my hibernate is getting deployed first & when deploying spring part its throwing
|
| java.lang.ClassNotFoundException: eLog.eTrack.dao.impl.BaseDAOHibernate
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4035660#4035660
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4035660
19 years