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

Struts 1 Java Discussion :

NoClassDefFoundError et classes externes au projet


Sujet :

Struts 1 Java

  1. #1
    Membre du Club
    Profil pro
    Inscrit en
    Mars 2008
    Messages
    64
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2008
    Messages : 64
    Points : 46
    Points
    46
    Par défaut NoClassDefFoundError et classes externes au projet
    Bonjour,

    J'ai un projet Web et un projet java que j'aimerais faire fonctionner ensemble. Les classes métier se trouvent dans le projet java nommé "modele". Une action de mon projet Web tente d'utiliser la classe ListeUtilisateur.

    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
     
    package controleur.action;
     
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpSession;
     
    import metier.ListeUtilisateur;
    import metier.Utilisateur;
     
    import org.apache.struts.action.Action;
    import org.apache.struts.action.ActionErrors;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionForward;
    import org.apache.struts.action.ActionMapping;
    import org.apache.struts.action.ActionMessage;
     
    import controleur.actionform.IdentificationForm;
     
    public class Identification extends Action{
     
    	public ActionForward execute(ActionMapping mapping, ActionForm form,HttpServletRequest request,HttpServletResponse response) throws Exception{
     
    		IdentificationForm f = (IdentificationForm) form;		
     
    		ListeUtilisateur liste = new ListeUtilisateur();
     
    		//identifiant existant?
    		Utilisateur u = liste.exists(f.getIdentifiant());
     
    		//mot de passe ok?
    		if (u.getMotdepasse().equals(f.getMotdepasse())){
    			HttpSession session = request.getSession(true);
    			session.setAttribute("identifiant", u.getIdentifiant());
    			if (u.getRole() == 1){ //administrateur
    				return mapping.findForward("accueiladministrateur");
    			}else if (u.getRole() == 2){ //client
    				return mapping.findForward("accueilclient");
    			}else{
    				return mapping.getInputForward();
    			}
    		}else{
    			ActionErrors errors = new ActionErrors();
    			errors.add("motdepasseIncorrect", new ActionMessage("erreur.motdepasse.incorrect"));
    			saveErrors(request, errors);
                return (new ActionForward(mapping.getInput()));
    		}
    	}
    }
    Lorsque je fais appel à cette action, ce message d'erreur apparait:

    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
     
     
    message
     
    description Le serveur a rencontré une erreur interne () qui l'a empêché de satisfaire la requête.
     
    exception
     
    javax.servlet.ServletException: L''exécution de la servlet a lancé une exception
     
    cause mère
     
    java.lang.NoClassDefFoundError: metier/ListeUtilisateur
    	controleur.action.Identification.execute(Identification.java:31)
    	org.apache.struts.chain.commands.servlet.ExecuteAction.execute(ExecuteAction.java:58)
    	org.apache.struts.chain.commands.AbstractExecuteAction.execute(AbstractExecuteAction.java:67)
    	org.apache.struts.chain.commands.ActionCommandBase.execute(ActionCommandBase.java:51)
    	org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:191)
    	org.apache.commons.chain.generic.LookupCommand.execute(LookupCommand.java:305)
    	org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:191)
    	org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequestProcessor.java:283)
    	org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
    	org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462)
    	javax.servlet.http.HttpServlet.service(HttpServlet.java:641)
    	javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
     
    cause mère
     
    java.lang.ClassNotFoundException: metier.ListeUtilisateur
    	org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1672)
    	org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1517)
    	controleur.action.Identification.execute(Identification.java:31)
    	org.apache.struts.chain.commands.servlet.ExecuteAction.execute(ExecuteAction.java:58)
    	org.apache.struts.chain.commands.AbstractExecuteAction.execute(AbstractExecuteAction.java:67)
    	org.apache.struts.chain.commands.ActionCommandBase.execute(ActionCommandBase.java:51)
    	org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:191)
    	org.apache.commons.chain.generic.LookupCommand.execute(LookupCommand.java:305)
    	org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:191)
    	org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequestProcessor.java:283)
    	org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
    	org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462)
    	javax.servlet.http.HttpServlet.service(HttpServlet.java:641)
    	javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
     
    note La trace complète de la cause mère de cette erreur est disponible dans les fichiers journaux de Apache Tomcat/7.0.4.
    J'ai fait de multiples recherches en vain...
    Je pense que mon classpath est correctement configuré (avec Eclipse dans java build path). Je suis sous linux.

    Merci de votre aide précieuse!

  2. #2
    Membre régulier
    Homme Profil pro
    Développeur Java
    Inscrit en
    Mars 2007
    Messages
    163
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Essonne (Île de France)

    Informations professionnelles :
    Activité : Développeur Java
    Secteur : Industrie

    Informations forums :
    Inscription : Mars 2007
    Messages : 163
    Points : 90
    Points
    90
    Par défaut
    Pourrais-tu mettre ici le fichier struts-config.xml ?

    Ce genre d'exception vient peut-être d'un attribut type d'une des actions (dans action-mapping).

  3. #3
    Membre du Club
    Profil pro
    Inscrit en
    Mars 2008
    Messages
    64
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2008
    Messages : 64
    Points : 46
    Points
    46
    Par défaut
    Le voici. C'est vrai que je ne maîtrise pas vraiment l'utilisation de ce fichier je crois... Si tu as une piste, ça m'aiderait beaucoup! merci!

    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
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
     
    <?xml version="1.0" encoding="ISO-8859-1" ?>
     
     
     
    <!DOCTYPE struts-config PUBLIC
     
              "-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"
     
              "http://struts.apache.org/dtds/struts-config_1_3.dtd">
     
     
     
    <struts-config>
     
     
     
     
     
    <!-- ================================================ Form Bean Definitions -->
     
     
     
        <form-beans>
     
        	<!-- identification utilisateur -->
     
    	 	<form-bean
     
                name="identificationform"
     
                type="controleur.actionform.IdentificationForm"/>
     
            <form-bean
     
                name="ListeUtilisateur"
     
                type="metier.ListeUtilisateur"/>
     
        </form-beans>
     
     
     
     
     
    <!-- ========================================= Global Exception Definitions -->
     
     
     
        <global-exceptions>
     
            <!-- sample exception handler
     
            <exception
     
                key="expired.password"
     
                type="app.ExpiredPasswordException"
     
                path="/changePassword.jsp"/>
     
            end sample -->
     
        </global-exceptions>
     
     
     
     
     
    <!-- =========================================== Global Forward Definitions -->
     
     
     
        <global-forwards>
     
            <!-- Default forward to "Welcome" action -->
     
            <!-- Demonstrates using index.jsp to forward -->
     
            <forward
     
                name="welcome"
     
                path="/Welcome.do"/>
     
     
     
            <forward
     
                name="accueiladministrateur"
     
                path="/WelcomeAdmin.do"/>
     
     
     
            <forward
     
                name="accueilclient"
     
                path="/WelcomeClient.do"/>
     
        </global-forwards>
     
     
     
     
     
    <!-- =========================================== Action Mapping Definitions -->
     
     
     
        <action-mappings>
     
                <!-- Default "Welcome" action -->
     
                <!-- Forwards to Welcome.jsp -->
     
            <action
     
                path="/Welcome"
     
                forward="/pages/Welcome.jsp"/>
     
            <action
     
                path="/WelcomeAdmin"
     
                forward="/pages/administrateur/accueil.jsp"/>
     
            <action
     
                path="/WelcomeClient"
     
                forward="/pages/client/accueil.jsp"/>
     
     
     
            <action
     
           		path="/Identification"
     
           		type="controleur.action.Identification"
     
           		name="identificationform"
     
           		input="/pages/Welcome.jsp"
     
           		scope="request" />
     
     
     
           	<action
     
                path="/ListerLogiciels"
     
                forward="/pages/client/accueil.jsp"/>
     
     
     
    		<action
     
           		path="/Deconnexion"
     
           		type="controleur.action.Deconnexion"
     
           		name="identificationform"
     
           		input="/pages/Welcome.jsp"
     
           		scope="request" />
     
     
     
        <!-- sample input and input submit actions
     
     
     
            <action
     
                path="/Input"
     
                type="org.apache.struts.actions.ForwardAction"
     
                parameter="/pages/Input.jsp"/>
     
     
     
            <action
     
                path="/InputSubmit"
     
                type="app.InputAction"
     
                name="inputForm"
     
                scope="request"
     
                validate="true"
     
                input="/pages/Input.jsp"/>
     
     
     
                <action
     
                    path="/edit*"
     
                    type="app.Edit{1}Action"
     
                    name="inputForm"
     
                    scope="request"
     
                    validate="true"
     
                    input="/pages/Edit{1}.jsp"/>
     
     
     
        end samples -->
     
        </action-mappings>
     
     
     
     
     
    <!-- ======================================== Message Resources Definitions -->
     
     
     
        <message-resources parameter="MessageResources" />
     
     
     
     
     
    <!-- =============================================== Plug Ins Configuration -->
     
     
     
      <!-- ======================================================= Tiles plugin -->
     
     
     
     
     
     
      <!-- =================================================== Validator plugin -->
     
     
     
      <plug-in className="org.apache.struts.validator.ValidatorPlugIn">
     
        <set-property
     
            property="pathnames"
     
            value="/org/apache/struts/validator/validator-rules.xml,
     
                   /WEB-INF/validation.xml"/>
     
      </plug-in>
     
     
     
    </struts-config>

  4. #4
    Membre du Club
    Profil pro
    Inscrit en
    Mars 2008
    Messages
    64
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2008
    Messages : 64
    Points : 46
    Points
    46
    Par défaut résolu :)
    Bonjour,

    J'ai fini par trouver la solution à mon problème.
    Je copie colle les classes du projet externe dans mon projet Web le temps du développement. Ensuite j'exporterai le jar du projet modele dans mon projet Web quand j'aurai terminé.

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

Discussions similaires

  1. importer une classe d'un projet externe
    Par wagui26 dans le forum Débuter avec Java
    Réponses: 1
    Dernier message: 08/01/2009, 12h39
  2. [NetBeans] Ajouter un fichier class dans un projet
    Par Ashgenesis dans le forum NetBeans
    Réponses: 14
    Dernier message: 16/12/2005, 00h25
  3. [Info]Classes externe
    Par mrttlemonde dans le forum Eclipse Java
    Réponses: 3
    Dernier message: 09/11/2005, 19h11
  4. Réponses: 8
    Dernier message: 19/01/2005, 16h17
  5. [EJB][JONAS] EJB utilisant une classe "externe"
    Par Gregory3000 dans le forum Eclipse Java
    Réponses: 4
    Dernier message: 13/12/2004, 19h57

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