I gave up trying to fix this problem. It didn't seem to be affecting anything, as you said. It just appears there's a thread out there that is still running that should have exited.
We switched to jboss messaging about 4 months ago, on jboss 4.2.2. All the problems we had with jboss mq with jboss mq deadlocking on heavy load, and this pong stuff went away. The new db schema and code they're using is so much better and more stable.
Joe
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172658#4172658
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4172658
Hi all, when debugging my application, I have to enter the TreeCache.inactivateRegion method.
i saw in the competability matrix that JBoss 4.2.1GA shipps with JBoss Cache 1.4.1 SP 3. I downloaded the sources for this version, but unfortunately when I perform "step into" using the debugger I get wrong debugging (as if the class I'm debugging is different than the presented source).
I checked several times my eclipse setttings and the source folder that I set for jboss cache.
Any suggestions on this issue?
Thanks
Yair
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172655#4172655
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4172655
i have resolved this problem,
ROrganizationService
| public int deleteObj(int id) {
| OrganizationEO org = queryByID(id);
| if(null != org && null != org.getParentObj())
| {
| OrganizationEO superOrg = queryByID(org.getParentObj().getId());
| if(null != superOrg && null != superOrg.getSonOrgs())
| {
| superOrg.getSonOrgs().remove(org);
| em.merge(superOrg);
| }
| }
| return CommonDBAction.deleteObjById(id, em, org);
| }
|
because of the parentOrganization who referenced to current Organization,it is impossable to delete current organization.now it can runs well..
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172644#4172644
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4172644