Java Mailing List Archive

http://www.junlu.com/

Google
Google
Mailing List
Home
Forum Home
JBoss - Java Application Server
Tomcat - JSP/Servlet container
Struts - A MVC web framework
iText - An open source PDF Java Library
JDOM - JDOM XML Parser
JSP - A mailing list about Java Server Pages specification and reference
J2EE - A mailing list for Java(tm) 2 Platform, Enterprise Edition
J2EE Pattern - An interest list for Sun Java Center J2EE Pattern Catalog
Servlet - A mailing list for discussion about Sun Microsystem's Java Servlet API Technology
Struts & Hibernate
Subjects
JSP editor plugin for eclipse ?
org apache jasper JasperException: Unable to compile class for JSP
Tomcat: Connection reset by peer: socket write error
Cannot retrieve definition for form bean null
Struts Tiles Tutorial (free Struts training)
Where do I download Tomcat 4 0 6?
Data Access Object (DAO) pattern, example DAO 's
Where to download Tomcat v 4 1 24 from?
Tomcat 5 0 16 Requested resource not available
Servlet : Session invalidate
Oracle Connection Pooling in 3 2 2
Servlet action is currently unavailable
Tomcat/Struts Unicode Encoding/Decoding problems
Running a Simple JMS Example
Tomcat and webapplication specific java library path
Mapping in workers2 properties
org apache jasper JasperException
problem with html:text bean throwing exception
Cannot find message resources under key org apache struts action
   MESSAGE
Cannot find message resources under key org apache struts action MESSAGE
invalid direct reference problem with solution
Tool for jsp debug Try Sysdeo Eclipse Plugin
Tomcat 5 Cannot load JDBC driver class 'null ' SQL state: null
weblogic ejbc
java properties file
Jboss 3 2 3 Coyote Can 't re
Tomcat 5, Apache2 and mod jk2 integration problem
JBoss example problem new to J2EE
Value attribute of <html:checkbox
url string for connecting jboss to oracle
javax servlet ServletException: BeanUtils populate
5 0 18: Windows XP Pro vs Windows 2000
HTTP Status 404 The requested resource is not available
 
- extended persistence context with JavaBeans ?

- extended persistence context with JavaBeans ?

2007-08-13       - By sirandreus

 Back
Hi,

How can I enable an extended persistence context using JavaBeans ? (without EJB
).

I could not manage not get it work. Please read on in order to understand the
problem.

Im using Seam with the following configuration:
- Seam 2.0 Beta1
- JBoss AS 4.2.1
- JavaBeans (without EJB)
- created Project using seam-gen as a war (not ear)

In the Seam book "Simplicity and Power beyond JEE" the author says that the
persistence context of all Seam POJOs is extended.

In order to make sure, that this is true, I??ve ported the Clickable Lists
example (from the official Tutorial := http://docs.jboss.org/seam/latest-2 (See http://est-2.ora-code.com).0
/reference/en/html/tutorial.html#messages) into the JavaBeans Model. The only
differences are:

1) no @(protected) Annotation at the MessageManagerBean class
2) added @(protected) at MessageManagerBean class (as a class level
annotation, so that every method is made trasactional)
3) instad of @(protected), I use @(protected)

The problem is, that the PersistenceContext is not extended as expected. For
example, after calling the "select" method, a database update does "not" happen
.


 |   public void select() {
 |     message.setRead(true);
 |   }
 |

However if I replace the implementation with the following code, everything is
fine (update happens):


 |   @(protected)
 |   public void select() {
 |     Message mergedMessage = entityManager.merge(message);
 |     mergedMessage.setRead(true);
 |
 |     //message.setRead(true);
 |   }
 |

The only logical explanation is that the PersistenceContext is not extended.
Because if it was, the original select implementation should synchronize the
state of the object with the database (and thus making an update).


thanks for your help,
Andreas

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic
&p=4073599#4073599

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode
=reply&p=4073599

__ ____ ____ ____ ____ ____ ____ ____ ____ ____
jboss-user mailing list
jboss-user@(protected)
https://lists.jboss.org/mailman/listinfo/jboss-user

©2008 junlu.com - Jax Systems, LLC, U.S.A.