[
https://jira.jboss.org/jira/browse/JBSEAM-4093?page=com.atlassian.jira.pl...
]
Julien Kronegg updated JBSEAM-4093:
-----------------------------------
Priority: Blocker (was: Major)
I updated priority from Major to Blocker for 3 reasons: 1) Seam does not start, 2) the
issue is simple to solve, 3) Seam 2.1.2.CR1/GA is awaited late april 2009.
TypeNotPresentException (PostConstruct) in
org.jboss.seam.persistence.persistenceProvider
-----------------------------------------------------------------------------------------
Key: JBSEAM-4093
URL:
https://jira.jboss.org/jira/browse/JBSEAM-4093
Project: Seam
Issue Type: Bug
Components: Platform interoperability
Affects Versions: 2.1.2.GA
Environment: IBM JVM, Websphere 6.1, Seam 2.1.2-SNAPSHOT,
http://fisheye.jboss.org/browse/Seam/trunk/src/main/org/jboss/seam/persis...
Reporter: Julien Kronegg
Priority: Blocker
Original Estimate: 2 hours
Remaining Estimate: 2 hours
When deploying the WAR on Websphere 6.1, the following stacktrace occurs:
java.lang.RuntimeException: could not create Component:
org.jboss.seam.persistence.persistenceProvider
at org.jboss.seam.init.Initialization.addComponent(Initialization.java:1198)
...
Caused by: java.lang.TypeNotPresentException: Type javax.annotation.PostConstruct not
present
at com.ibm.oti.reflect.AnnotationHelper.getAnnotation(AnnotationHelper.java:38)
...
at org.jboss.seam.Component.hasAnnotation(Component.java:1160)
...
Dan introduced the following code between the two versions of PersistenceProvider:
@PostConstruct // from the javax.annotations package
public void init() {}
It seems (see forum) that this annotation comes from the wrong package: it should come
from
org.jboss.seam.annotations.intercept.PostConstruct
, a class introduced in the very similar issue was raised by Denis Forveille in
JBSEAM-3726.
To correct the problem, the "import javax.annotations.PostConstruct;" must be
replaced by "import org.jboss.seam.annotations.intercept.PostConstruct;" in
PersistenceProvider
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira