关于The absolute uri: http://java.sun.com/jstl/core_rt cannot be resolved in either web.xml or the jar files deployed with this ap


解决方法:
刚开始的时候我将jstl.jar和standard.jar包导入工程后,运行页面依然存在以上错误,后来我将这两个jar包直接拷贝到工程的lib目录下,这个时候jsp页面可以正常显示。

这个问题一看就知道是服务器端出现的错误,我也是在学习spring MVC的时候学习例子的时候在使用的bean的配置文件中使用如下:

<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">

    <property name="viewClass">
     <value>org.springframework.web.servlet.view.JstlView</value>
    </property>
    <property name="prefix">
     <value>/WEB-INF/</value>
    </property>
    <property name="suffix">
     <value>.jsp</value>
    </property>
   </bean>
来配置jsp页面的,而发生的错误。


直接把两个jar包扔到tomcat的lib下边就可以显示了。关于The absolute uri: http://java.sun.com/jstl/core_rt cannot be resolved in either web.xml or the jar

关于The absolute uri: http://java.sun.com/jstl/core_rt cannot be resolved in either web.xml or the jar


相关文章: