IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Wildfly/JBoss Java Discussion :

[Jboss 3.2.3] NoClassDefFoundError


Sujet :

Wildfly/JBoss Java

  1. #1
    Membre confirmé
    Inscrit en
    Mars 2007
    Messages
    179
    Détails du profil
    Informations forums :
    Inscription : Mars 2007
    Messages : 179
    Par défaut [Jboss 3.2.3] NoClassDefFoundError
    Bonjour bonjour

    Voilà mon problème. Je travaille sur une application J2EE donc à la sortie j'ai un .ear. Jusqu'à présent, je ne packageais aucune de mes librairies utilisées, je les mettais directement dans Jboss. (Par exemple si mon app utilisait commons-logging.jar, je le mettais dans server/default/lib, mais pas dans le .ear).
    Comme j'ai des problèmes, l'une des solutions que j'ai trouvé pour y voir plus clair est de cleaner un peu tout çà et de packager toutes mes librairies dans mon .ear.

    J'ai donc supprimé toutes les libs de mon jboss (celles dans server/default/lib), puis copié/collé la liste des libs présentes dans un JBoss 3.2.3 fraichement explosé dans server/default/lib.

    J'ai donc maintenant quelques problèmes.
    En redéployant plusieurs fois, j'ai rajouté les librairies dont JBoss semble avoir absolument besoin: par exemple j'ai rajouté jaxb-api.jar et hibernate2.jar.
    Première question: pourquoi je dois les rajouter dans JBoss sachant qu'elles sont déjà packagées dans mon .ear (à la racine de mon .ear)???

    Seconde question: je me chope cette exception lors du déploiement (voir ci-après). Visiblement, il manque une librairie. Maisj 'ai vérifié sur docjar.com, net.sf.hibernate.collection.List se trouve bien dans hibernate2.jar : j'ai explosé celui dans mon JBoss et cette classe est effectivement présente. J'ai explosé celui dans mon .ear et la classe est également présente.
    Je me retrouve donc avec une NoClassDefFoundError alors que j'ai bien le .jar présents (la preuve, il passe bien par net.sf.hibernate.mapping.List.getCollectionType).
    J'aimerais comprendre pourquoi. Voici le log.


    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    2007-11-28 10:05:34,199 WARN  [org.jboss.system.ServiceController] Problem starting service jboss.jca:service=HibernateFactory,                             name=HibernateFactory
    java.lang.NoClassDefFoundError: net/sf/hibernate/collection/List
    	at net.sf.hibernate.type.TypeFactory.list(TypeFactory.java:186)
    	at net.sf.hibernate.mapping.List.getCollectionType(List.java:19)
    	at net.sf.hibernate.mapping.Collection.getType(Collection.java:275)
    	at net.sf.hibernate.cfg.Binder.bindProperty(Binder.java:422)
    	at net.sf.hibernate.cfg.Binder.createProperty(Binder.java:1041)
    	at net.sf.hibernate.cfg.Binder.propertiesFromXML(Binder.java:1022)
    	at net.sf.hibernate.cfg.Binder.bindRootClass(Binder.java:344)
    	at net.sf.hibernate.cfg.Binder.bindRoot(Binder.java:1204)
    	at net.sf.hibernate.cfg.Configuration.add(Configuration.java:247)
    	at net.sf.hibernate.cfg.Configuration.addInputStream(Configuration.java:281)
    	at net.sf.hibernate.cfg.Configuration.addResource(Configuration.java:304)
    	at net.sf.hibernate.jmx.HibernateService.buildSessionFactory(HibernateService.java:174)
    	at net.sf.hibernate.jmx.HibernateService.start(HibernateService.java:145)
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    	at java.lang.reflect.Method.invoke(Method.java:324)
    	at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
    	at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:976)
    	at $Proxy14.start(Unknown Source)
    	at org.jboss.system.ServiceController.start(ServiceController.java:394)
    	at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    	at java.lang.reflect.Method.invoke(Method.java:324)
    	at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
    	at $Proxy4.start(Unknown Source)
    	at org.jboss.deployment.SARDeployer.start(SARDeployer.java:226)
    	at org.jboss.deployment.MainDeployer.start(MainDeployer.java:832)
    	at org.jboss.deployment.MainDeployer.start(MainDeployer.java:824)
    	at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:642)
    	at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605)
    	at sun.reflect.GeneratedMethodAccessor24.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    	at java.lang.reflect.Method.invoke(Method.java:324)
    	at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
    	at $Proxy6.deploy(Unknown Source)
    	at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:302)
    	at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:476)
    	at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:201)
    	at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:274)
    	at org.jboss.system.ServiceMBeanSupport.start(ServiceMBeanSupport.java:192)
    	at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    	at java.lang.reflect.Method.invoke(Method.java:324)
    	at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
    	at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:976)
    	at $Proxy0.start(Unknown Source)
    	at org.jboss.system.ServiceController.start(ServiceController.java:394)
    	at sun.reflect.GeneratedMethodAccessor6.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    	at java.lang.reflect.Method.invoke(Method.java:324)
    	at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
    	at $Proxy4.start(Unknown Source)
    	at org.jboss.deployment.SARDeployer.start(SARDeployer.java:226)
    	at org.jboss.deployment.MainDeployer.start(MainDeployer.java:832)
    	at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:642)
    	at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:605)
    	at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:589)
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    	at java.lang.reflect.Method.invoke(Method.java:324)
    	at org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispatcher.java:284)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:546)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:177)
    	at $Proxy5.deploy(Unknown Source)
    	at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:384)
    	at org.jboss.system.server.ServerImpl.start(ServerImpl.java:291)
    	at org.jboss.Main.boot(Main.java:150)
    	at org.jboss.Main$1.run(Main.java:395)
    	at java.lang.Thread.run(Thread.java:534)
    Merci d'avance pour votre aide!

  2. #2
    Membre confirmé
    Inscrit en
    Mars 2007
    Messages
    179
    Détails du profil
    Informations forums :
    Inscription : Mars 2007
    Messages : 179
    Par défaut
    Personne? allez euuuuh vous aurez un cadeau

  3. #3
    Membre émérite Avatar de XmasRock
    Inscrit en
    Janvier 2007
    Messages
    729
    Détails du profil
    Informations forums :
    Inscription : Janvier 2007
    Messages : 729

  4. #4
    Membre confirmé
    Inscrit en
    Mars 2007
    Messages
    179
    Détails du profil
    Informations forums :
    Inscription : Mars 2007
    Messages : 179
    Par défaut
    Hey merci pr les liens j'y jeterais un oeil demain.
    Ceci dit je ne peux pas changer ma version de JBoss maintenant, çà implique trop de changements (notamment les ejb-jar que je devrais tout réécrire à la main). J'ai une deadline qui s'approche et pr le moment j'essaie de parer au plus urgent bien que çà m'enchante pas.
    Ceci dit l'upgrade est prévue...

  5. #5
    Membre confirmé
    Inscrit en
    Mars 2007
    Messages
    179
    Détails du profil
    Informations forums :
    Inscription : Mars 2007
    Messages : 179
    Par défaut
    Remerci pour le lien mais y a 20 pages à essayer de comprendre et jai du mal là. Y a pas une réponse plus simple?
    (J'ai regardé dans la partie résolution de problèmes, il dit d'aller voir dans jmx-console mais je n'y ai pas accès...)

  6. #6
    Membre confirmé
    Inscrit en
    Mars 2007
    Messages
    179
    Détails du profil
    Informations forums :
    Inscription : Mars 2007
    Messages : 179
    Par défaut
    Ce que j'essaie de comprendre, c'est pourquoi il pavient à passer par d'autres méthodes du package Hibernate, et d'un coup plante et me lance une NoClassDefFoundError....

  7. #7
    Membre confirmé
    Inscrit en
    Mars 2007
    Messages
    179
    Détails du profil
    Informations forums :
    Inscription : Mars 2007
    Messages : 179
    Par défaut
    Hey, j'ai toujours le problème mais maintenant avec javax.mail.Transport.
    J'ai pourtant bien mail.jar dans JBoss, et mail-1.4 packagé à la racine de mon .ear.

    Néanmoins, jai ceci:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    12:23:43,598 WARN  [RemoteInvocationTraceInterceptor] Processing of HttpInvokerServiceExporter remote call resulted in fatal exception: com.thalys.opalys.business.IncidentService.sendMail
    com.thalys.opalys.business.IncidentServiceException: javax/mail/Transport
    	at com.thalys.opalys.business.IncidentServiceBase.sendMail(IncidentServiceBase.java:791)
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    	at java.lang.reflect.Method.invoke(Method.java:585)
    	at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:291)
    	at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:180)
    	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:147)
    	at org.springframework.orm.hibernate3.HibernateInterceptor.invoke(HibernateInterceptor.java:88)
    	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:169)
    	at org.acegisecurity.intercept.method.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:66)
    	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:169)
    	at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:169)
    	at $Proxy123.sendMail(Unknown Source)
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    	at java.lang.reflect.Method.invoke(Method.java:585)
    	at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:291)
    	at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:180)
    	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:147)
    	at org.springframework.remoting.support.RemoteInvocationTraceInterceptor.invoke(RemoteInvocationTraceInterceptor.java:68)
    	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:169)
    	at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:169)
    	at $Proxy123.sendMail(Unknown Source)
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    	at java.lang.reflect.Method.invoke(Method.java:585)
    	at org.springframework.remoting.support.RemoteInvocation.invoke(RemoteInvocation.java:179)
    	at org.springframework.remoting.support.DefaultRemoteInvocationExecutor.invoke(DefaultRemoteInvocationExecutor.java:33)
    	at org.springframework.remoting.support.RemoteInvocationBasedExporter.invoke(RemoteInvocationBasedExporter.java:76)
    	at org.springframework.remoting.support.RemoteInvocationBasedExporter.invokeAndCreateResult(RemoteInvocationBasedExporter.java:112)
    	at org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter.handleRequest(HttpInvokerServiceExporter.java:82)
    	at org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter.handle(SimpleControllerHandlerAdapter.java:44)
    	at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:740)
    	at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:684)
    	at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:394)
    	at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:358)
    	at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    	at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
    	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    	at org.acegisecurity.ui.basicauth.BasicProcessingFilter.doFilter(BasicProcessingFilter.java:175)
    	at org.acegisecurity.util.FilterToBeanProxy.doFilter(FilterToBeanProxy.java:98)
    	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    	at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
    	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    	at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    	at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    	at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
    	at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
    	at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    	at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    	at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
    	at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    	at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    	at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
    	at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
    	at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    	at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
    	at java.lang.Thread.run(Thread.java:613)
    Caused by: java.lang.NoClassDefFoundError: javax/mail/Transport
    	at javax.mail.Session.getTransport(Session.java:708)
    	at javax.mail.Session.getTransport(Session.java:651)
    	at javax.mail.Session.getTransport(Session.java:631)
    	at org.springframework.mail.javamail.JavaMailSenderImpl.getTransport(JavaMailSenderImpl.java:419)
    	at org.springframework.mail.javamail.JavaMailSenderImpl.doSend(JavaMailSenderImpl.java:378)
    	at org.springframework.mail.javamail.JavaMailSenderImpl.send(JavaMailSenderImpl.java:332)
    	at org.springframework.mail.javamail.JavaMailSenderImpl.send(JavaMailSenderImpl.java:328)
    	at com.thalys.opalys.utils.MailUtils.sendTextMail(MailUtils.java:49)
    	at com.thalys.opalys.business.IncidentServiceImpl.handleSendMail(IncidentServiceImpl.java:450)
    	at com.thalys.opalys.business.IncidentServiceBase.sendMail(IncidentServiceBase.java:787)
    	... 63 more
    J'ai regardé dans mail-1.4.jar où çà plante:
    Ca plante sur la ligne en rouge:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    private Transport getTransport(Provider provider, URLName url)
    					throws NoSuchProviderException {
    	// make sure we have the correct type of provider
    	if (provider == null || provider.getType() != Provider.Type.TRANSPORT) {
    	    throw new NoSuchProviderException("invalid provider");
    	}
    
    	try {
    	    return (Transport) getService(provider, url);
    	} catch (ClassCastException cce) {
    	    throw new NoSuchProviderException("incorrect class");
    	}
        }
    [EDIT] Je sais que les NoClassDefFoundError peuvent venir d'un problème de dépendance de librairies. J'ai donc regardé, et la classe javax.mail.Session fait les imports suivants:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
     
    package javax.mail;
     
    import java.lang.reflect.*;
    import java.io.*;
    import java.net.*;
    import java.security.*;
    import java.util.Enumeration;
    import java.util.Hashtable;
    import java.util.Properties;
    import java.util.StringTokenizer;
    import java.util.Vector;
     
    import javax.activation.*;
     
    import com.sun.mail.util.LineInputStream;
    [EDIT2] Pour info, je travaille en client-serveur. Quand je fais mes tests du côté serveur, càd avec Spring, sans passer par JBoss, çà fonctionne très bien. Une fois que je tente depuis le client, avec donc JBoss qui tourne (donc mon client qui appelle le serveur pour l'envoi d'un mail via une méthode business), là çà plante et je me chope l'exception.
    mail.jar et activation.jar sont bien dans JBOSS_HOME/server/default/lib. J'ai essayé d'enlever les librairies, mais JBoss ne peut plus se lancer (il lui manque javax.mail.authenticator)

  8. #8
    Membre confirmé
    Inscrit en
    Mars 2007
    Messages
    179
    Détails du profil
    Informations forums :
    Inscription : Mars 2007
    Messages : 179
    Par défaut
    J'ai enlevé les libs de mon .ear, et çà passe. Un peu de mal à comprendre tout çà m'enfin bon, au moins çà passe...
    Je vais mettre en résolu

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Déploiement d'un EAR sur JBoss => NoClassDefFoundError
    Par Ash ToDust dans le forum Eclipse Java
    Réponses: 0
    Dernier message: 02/10/2011, 14h35
  2. Réponses: 0
    Dernier message: 01/04/2009, 17h23
  3. [jboss][ejb2][hibernate] NoClassDefFoundError au deploiement
    Par feintouze dans le forum Wildfly/JBoss
    Réponses: 1
    Dernier message: 22/07/2007, 16h51
  4. [EJB3] NoClassDefFoundError: org/jboss/util/platform/PID
    Par crevettes59000 dans le forum Wildfly/JBoss
    Réponses: 2
    Dernier message: 19/12/2006, 16h23
  5. [EJB3] [JBoss] Problème java.lang.NoClassDefFoundError:
    Par jctigre dans le forum Java EE
    Réponses: 3
    Dernier message: 24/04/2006, 13h33

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo