SpringMVC项目中常见问题以及解决方案

一、org.apache.jasper.JasperException: The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application

 1、问题原因:

   缺少相关jar(jstl.jar,和standard.jar) 包

 

2、 解决方法:

在Maven仓库中http://www.mvnrepository.com/search?q=standard.jar

搜索这两个jar包,并将依赖项添加到pom.xml文件中。

 

 

二、程序运行时,报错内容如下:

The requested resource is not available.

 

 

 

  出错原因:在jsp中,action处理路径写错,如下所示:

 

正确的写法是:action=”user.do”

相应地在这里展示下控制器中路径和web.xml中的路径配置

 

三、Web工程在运行时报错“java.lang.ClassNotFoundException: org.apache.jsp.index_jsp

原因:与JSP有关的Jar包没有导入

解决方法:

在pom.xml中导入一下内容:


            javax.servlet
            servlet-api
            2.5
            provided
        

        
            javax.servlet.jsp
            jsp-api
            2.1
            provided
        

        
            javax.servlet
            jstl
            1.2

详细内容请参考附件

你可能感兴趣的:(SpringMVC基于3.0)