Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm receiving this error on my jsp file - 'Can not find the tag library descriptor for "/struts-tags"'

Strange thing is my app still seems to work.

I'm following the tutorials at - http://struts.apache.org/2.x/docs/using-struts-2-tags.html

Here is the code.

<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> 
<%@ taglib prefix="s" uri="/struts-tags" %> 
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
<html> 
  <head> 
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> 
      <title>Hello World!</title> 
  </head> 
  <body>  
      <h2><s:property value="messageStore.message" /></h2>  
      <p>I've said hello <s:property value="helloCount" /> times!</p>  
      <p><s:property value="messageStore" /></p> 
  </body>
</html>  

Thanks

share|improve this question
Show the relevant code of your JSP. – Adeel Ansari Oct 29 '10 at 9:49
Here it is - <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@ taglib prefix="s" uri="/struts-tags" %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "w3.org/TR/html4/loose.dtd">; <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Hello World!</title> </head> <body> <h2><s:property value="messageStore.message" /></h2> <p>I've said hello <s:property value="helloCount" /> times!</p> <p><s:property value="messageStore" /></p> </body> </html> – user470184 Oct 29 '10 at 9:51

5 Answers

up vote 3 down vote accepted

Have you added the struts2-core-.jar to the libraries of the project? If you have try to clean the project.

share|improve this answer
That worked, thanks a mill – user470184 Oct 29 '10 at 10:13
Same problem, the struts 2 jar were added by maven into the WEB-INF/lib folder but I still had this error in all my jsps. A project "clean" solved it. – Pierre Henry Oct 3 '12 at 14:48

This is probably Eclipse getting a bit 'confused' rather than a genuine error.

I had the same thing yesterday when working through a Struts 2 tutorial, but it disappeared after opening/closing the JSPs.

share|improve this answer

As William mentioned, this sounds like your IDE may not know where the TLD for the tag library is in your project, but once packaged and running, it is working fine.

share|improve this answer

In ECLIPSE: Right click on the project and select the option "Validate". That's all.

share|improve this answer

The same thing happened to me. I am using Maven to compile. So, I disabled and re-enabled Maven in my project and that solved it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.