Bonjour,

Je débute en Struts avec Eclipse et j'ai suivi ce cours http://viralpatel.net/blogs/2008/12/tutorial-creating-struts-application-in-eclipse.html mais j'ai un problème dans la page index.jsp, dont le code est :
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
<%@taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>  
<%@taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %> 
 
<html>  
    <head>  
        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">  
        <title>Login page | Hello World Struts application in Eclipse</title>  
    </head>  
    <body>  
    <h1>Login</h1>  
    <html:form action="login">  
         <bean:message key="label.username" />  
         <html:text property="userName"></html:text>  
         <html:errors property="userName" />  
         <br/>  
         <bean:message key="label.password"/>  
        <html:password property="password"></html:password>  
         <html:errors property="password"/>  
        <html:submit/>  
        <html:reset/>  
    </html:form>  
    </body>  
</html>
J'ai obtenu cette erreur :
can't find the tag library descriptor for http://jakarta.apache.org/struts/html-tag
D'après mes recherches sur Google, j'ai compris qu'il fallait modifier le web.xml mais ce n'est pas bien décrit pour un débutant.

J'aimerais savoir comment éditer ce web.xml ?

Sinon y a pas une autre manière pour corriger l'erreur sur mon index.jsp ?

Merci pour vos réponses