我在jsp页面中看到以下错误 -
javax.servlet.jsp.PageContext cannot be resolved to a type
javax.servlet.jsp.JspException cannot be resolved to a type
我已经看过一篇关于此的帖子,并尝试了一些建议的事情。 BalusC提供了很好的输入 - JSTL1.2和Standard.jar不能一起使用。我做了这个,它解决了一段时间的问题 - 但它再次出现。我不确定我是否还有罐头碰撞。我已经将所有jar定义为Maven中的依赖项。以下是我指定的依赖项pom.xml -
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
<version>0.1.38</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.15</version>
<exclusions>
<exclusion>
<groupId>javax.jms</groupId>
<artifactId>jms</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jmx</groupId>
<artifactId>jmxri</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.jdmk</groupId>
<artifactId>jmxtools</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<version>1.6</version>
</dependency>
<dependency>
<groupId>org.apache.tiles</groupId>
<artifactId>tiles-jsp</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.5.6</version>
</dependency>
</dependencies>
答案 0 :(得分:62)
您需要在项目中导入JSP API,这些API不包含在servlet-api
中在我的项目中,解决方案是:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jsp-api</artifactId>
<version>2.0</version>
<scope>provided</scope>
</dependency>
答案 1 :(得分:23)
对我有用的解决方案在this answer中给出。转到项目属性&gt;目标运行时&gt;选择运行时的复选框(在我的例子中是Apache Tomcat 7) 就这样。现在就建立项目,一切都会好的。
答案 2 :(得分:5)
假设这是Web应用程序的pom ......
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>
许多这些依赖项应设置为提供,因为它们是由容器配置的。不应将这些与您的应用程序捆绑在一起。见Maven dependency scopes。不这样做可能会导致未定义的行为。
确切地提供了哪些依赖项取决于容器。
答案 3 :(得分:1)
&#34;在我的答案中给出了适合我的解决方案。转到项目属性&gt;目标运行时&gt;选择运行时的复选框(在我的例子中是Apache Tomcat 7)。 这就是全部。现在就建立项目,一切都会好的。&#34;
这个解决方案对我有用。