[prev in list] [next in list] [prev in thread] [next in thread] 

List:       jboss-user
Subject:    [jboss-user] [jBPM] - Re: Session and thread safety
From:       Michał_Mański <do-not-reply () jboss ! com>
Date:       2012-09-29 18:58:37
Message-ID: 2-723455-3-103348-1331679841628-2-762354-3-114905-1348945112602.jivesbs.jivemailuser () https://community ! jboss ! org
[Download RAW message or body]

[Attachment #2 (multipart/alternative)]


Michał Mański [https://community.jboss.org/people/mmanski] created the discussion

"Re: Session and thread safety"

To view the discussion, visit: https://community.jboss.org/message/762354#762354

--------------------------------------------------------------
Hi,
I use JBPM 5.3.0.Final in my project. My application uses EJB 3.1/JPA 2.0 and runs on \
JBoss 7.1.1.Final. I have similar problem with thread safety. When I use one session \
for whole application, strange exceptions are thrown (e.g. \
"javax.persistence.PersistenceException: error during managed flush ... caused by: \
org.hibernate.AssertionFailure: collection [null] was not processed by flush()", \
"javax.persistence.PersistenceException: error during managed flush ... Caused by: \
java.util.ConcurrentModificationException" or "org.hibernate.HibernateException: \
Found two representations of same collection: \
org.jbpm.persistence.processinstance.ProcessInstanceInfo.eventTypes") if many users \
use the application simultaneously. I tried to use the \
ProcessPersistenceContextManager presented by Sebastian, but it didn't resolve the \
problem - errors still appear.

When I try to user another solution and create new session for every request, I don't \
know how to dispose sessions. I read in documentation that this method must always be \
called after finishing using the session, or the engine will not free the memory used \
by the session. However, I don't know how to correctly dispose a session. 

If I try to dispose session before end of transaction, an exception is thrown during \
committing transaction: "javax.persistence.PersistenceException: error during managed \
flush ... Caused by: java.lang.IllegalStateException: Illegal method call. This \
session was previously disposed".  On the other hand, if i dispose session after \
transaction commits, another exception is thrown: "Could not commit session: \
javax.persistence.TransactionRequiredException: No active JTA transaction on \
joinTransaction call".

Does anyone know what is the correct way to dispose a session?
--------------------------------------------------------------

Reply to this message by going to Community
[https://community.jboss.org/message/762354#762354]

Start a new discussion in jBPM at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2034]



[Attachment #5 (text/html)]

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; \
margin: 0; padding: 20px;">

<div>
	<table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: \
1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; \
-webkit-border-radius: 6px;">  <tbody>
			<tr>

				<td>

					<table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" \
style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: \
6px; -webkit-border-radius: 6px;">  <tbody>
							<tr>
								<td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px \
solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; \
-moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; \
                -webkit-border-top-left-radius: 5px;">
									<h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; \
                margin: 0; display: block !important;">
									<!-- To have a header image/logo replace the name below with your img tag \
                -->
									<!-- Email clients will render the images when the message is read so any \
                image -->
									<!-- must be made available on a public server, so that all recipients can \
                load the image. -->
									<a href="https://community.jboss.org/index.jspa" style="text-decoration: \
none; color: #E1E1E1">JBoss Community</a></h1>  </td>

							</tr>
							<tr>
								<td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; \
color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; \
-moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; \
-webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: \
17px; font-weight: normal;">  Re: Session and thread safety
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="https://community.jboss.org/people/mmanski">Michał \
Mański</a> in <i>jBPM</i> - <a \
href="https://community.jboss.org/message/762354#762354">View the full discussion</a> \
</span> <hr style="margin: 20px 0; border: none; background-color: #dadada; height: \
1px;">

<div class="jive-rendered-content"><p>Hi,</p><p>I use JBPM 5.3.0.Final in my project. \
My application uses EJB 3.1/JPA 2.0 and runs on JBoss 7.1.1.Final. I have similar \
problem with thread safety.</p><p>When I use one session for whole application, \
strange exceptions are thrown (e.g. "javax.persistence.PersistenceException: error \
during managed flush ... caused by: org.hibernate.AssertionFailure: collection [null] \
was not processed by flush()", "javax.persistence.PersistenceException: error during \
managed flush ... Caused by: java.util.ConcurrentModificationException" or \
"org.hibernate.HibernateException: Found two representations of same collection: \
org.jbpm.persistence.processinstance.ProcessInstanceInfo.eventTypes") if many users \
use the application simultaneously. I tried to use the \
ProcessPersistenceContextManager presented by Sebastian, but it didn't resolve the \
problem - errors still appear.</p><p style="min-height: 8pt; height: 8pt; padding: \
0px;">&#160;</p><p>When I try to user another solution and create new session for \
every request, I don't know how to dispose sessions. I read in documentation that \
this method must always be called after finishing using the session, or the engine \
will not free the memory used by the session. However, I don't know how to correctly \
dispose a session. </p><p style="min-height: 8pt; height: 8pt; padding: \
0px;">&#160;</p><p>If I try to dispose session before end of transaction, an \
exception is thrown during committing transaction: \
"javax.persistence.PersistenceException: error during managed flush ... Caused by: \
java.lang.IllegalStateException: Illegal method call. This session was previously \
disposed". </p><p>On the other hand, if i dispose session after transaction commits, \
another exception is thrown: "Could not commit session: \
javax.persistence.TransactionRequiredException: No active JTA transaction on \
joinTransaction call".</p><p style="min-height: 8pt; height: 8pt; padding: \
0px;">&#160;</p><p>Does anyone know what is the correct way to dispose a \
session?</p></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a \
href="https://community.jboss.org/message/762354#762354">going to Community</a></p>  \
<p style="margin: 0;">Start a new discussion in jBPM at <a \
href="https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2034">Community</a></p>
 </div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>



_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic