Ich versuche gerade eine Beispielanwendung aus einem Buch auf Glassfish zum Laufen zu bringen. Beim deployen im Glassfish Server bekomme ich folgende Fehlermeldung:
Ich habe folgende beans.xml:
Ich habe mir die Seam Packages heruntergeladen, und da ich nicht wusste welches jar welche Klasse beinhaltet, habe ich alle jars aus Seam.../artifacts nach glassfish3/glassfish/modules kopiert.
Weiß jemand was die Ursache des Fehlers ist?
Error occurred during deployment: Exception while loading the app : Error loading class org.jboss.seam.transaction.TransactionInterceptor; location: <class>org.jboss.seam.transaction.TransactionInterceptor</class> in file:/ ... /WEB-INF/beans.xml@6. Please see server.log for more details.
Ich habe folgende beans.xml:
Code:
<?xml version="1.0"?>
<beans xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/beans_1_0.xsd">
<interceptors>
<class>de.gedoplan.baselibs.enterprise.interceptor.TraceCallInterceptor</class>
<class>org.jboss.seam.transaction.TransactionInterceptor</class>
</interceptors>
</beans>
Ich habe mir die Seam Packages heruntergeladen, und da ich nicht wusste welches jar welche Klasse beinhaltet, habe ich alle jars aus Seam.../artifacts nach glassfish3/glassfish/modules kopiert.
Weiß jemand was die Ursache des Fehlers ist?