According to the tutorials for
Struts 2 I've come across, including the following line at the top of a given
JSP will properly load the tag library:
The tag library is stored at "struts2-core.jar / META-INF / struts-tags.tld". My server, running
JBoss 4.2.3 cannot find this file and throws the exception:
org.apache.jasper.JasperException: File "/struts-tags" not found error
The temporary solution, which seems to resolve the issue, is to extract the struts-tags.tld to the WEB-INF folder than change the call in the JSP to:
The problem is, this seems to go against every example I've seen, so I'm wondering if I'm doing something wrong such that my server cannot find and load the TLD file inside the jar. I can't imagine everyone using JBoss and Struts2 has had to do this therefore I'm assuming something's wrong with my Struts setup.