前几天写的一个小程序,用到了tiles框架,一直用的很好,可今天早上一运行忽然报错了,错误时
 The absolute uri: http://struts.apache.org/tags-bean cannot be resolved in either web.xml or the jar files deployed with this application
在网上查了些资料,有人说是版本错了,但我前面一直用的很正常,也都能正常运行,
之前是
<taglib>
<taglib-uri>/WEB-INF/struts-tiles.tld</taglib-uri>
<taglib-location>/WEB-INF/struts-tiles.tld</taglib-location>
</taglib>
在web.xml里重新声明了taglib:<taglib>
<taglib-uri>http://struts.apache.org/tags-tiles</taglib-uri>
<taglib-location>/WEB-INF/struts-tiles.tld</taglib-location>
</taglib>
之后,错误变成了org.apache.jasper.JasperException: File "/WEB-INF/struts-tiles.tld" not found
把struts包重新加载了,还是不行,一天都浪费在这个上面了
求高手解决啊~~