top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Can a servlet maintain a JTA UserTransaction object across multiple servlet invocations?

+1 vote
234 views
Can a servlet maintain a JTA UserTransaction object across multiple servlet invocations?
posted Sep 24, 2015 by Shyam

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

No. A JTA transaction must start and finish within a single invocation (of the service() method). Note that this question does not address servlets that maintain and manipulate JDBC connections, including a connection’s transaction handling.

answer Sep 28, 2015 by Karthick.c
...