解决 javax.servlet 问题
Eclipse 无法解析 javax.servlet。我使用 Apache Tomcat。 我的 CLASSPATH 变量如下所示:
C:\glassfish3\jdk\jre\lib;C:\glassfish3\jdk\lib;
C:\Programme\liferay-portal-tomcat-6.0.5\liferay-portal-6.0.5\tomcat-6.0.26\lib
据我所知 javax.servlet 位于文件 servlet-api.jar 中。 除了类路径之外,我还需要配置其他任何东西吗?
Eclipse can't resolve javax.servlet. I use Apache Tomcat.
My CLASSPATH variable looks as following:
C:\glassfish3\jdk\jre\lib;C:\glassfish3\jdk\lib;
C:\Programme\liferay-portal-tomcat-6.0.5\liferay-portal-6.0.5\tomcat-6.0.26\lib
As far as I know javax.servlet
is in the file servlet-api.jar which is there.
Do I need to configure anything else than the classpath?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保您使用的是面向 Java EE 开发人员的 Eclipse。如果确定的话,首先将 Tomcat 集成到您的 Eclipse 环境中(如果尚未完成)。打开底部的“服务器”视图,右键单击它,选择“新建”,从列表中添加“Apache Tomcat”,然后按照向导操作。
然后右键单击您的动态 Web 项目,选择“属性”,然后转到“目标运行时”,从列表中选择集成的 Tomcat,然后单击“确定”。
应该是这样。
Ensure that you're using Eclipse for Java EE developers. If ensured, then first integrate Tomcat in your Eclipse environment if not done yet. Open the Servers view at the bottom, rightclick it, choose New, add Apache Tomcat from the list and follow the wizard.
Then rightclick your dynamic web project, choose Properties and then go to Targeted Runtimes and select the integrated Tomcat from the list and click OK.
That should be it.