SimpleTagSupport无法解析为某种类型

时间:2014-01-07 09:51:55

标签: java jsp jstl

我正在研究JSTL。我正在关注一个在互联网上找到的简单例子。 我创建了一个扩展SimpleTagSupport的类。但是我得到了这个错误

  SimpleTagSupport cannot be resolved to a type

我有Tomcat 7Java 1.7系统库,我添加为外部广告'servlet-api.jar'

我错过了什么? 谢谢

1 个答案:

答案 0 :(得分:0)

对于发现此问题的其他人,另一个可能的问题是由您的eclipse .classpath文件引起的。我需要改变这个:

<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.launching.macosx.MacOSXType/Java SE 7 [1.7.0_51]">
    <attributes>
        <attribute name="owner.project.facets" value="java"/>
    </attributes>
</classpathentry>

到此:

<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>