Eclipse安装后jdk和tomacat与以前项目不匹配解决办法

本文档详细介绍了在使用Eclipse开发环境中遇到的一些常见问题及其解决方案,包括配置Tomcat和JDK、解决导入问题、修复Java Build Path错误等。

1、首先配置好tomacatJdk

Windows——preference——Server——Runtime Environment——选择合适的tomacat

Windows——preference——Java——Compile——选择合适的JDK

2、显示 the import java.util cannot be resolve,怎么解决

解决方案:

(1)、右键项目-------buildpath--------最下面那个configura。。。的

(2)、选择libraries找到JRE(这个时候你会发现这个jre前面有个红X)

(3)、选中remove掉

(4)、重新为该项目选择一个JRE,点击“Add Library”,然后选择“Jre System Library”,选择JDK。 

3The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path

 The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path add.jsp /dwz-java/WebContent/WEB-INF/jsp/management/news line 1 JSP Problem



在出现此错误的项目上单击鼠标右键》Build PathConfigure Build Path












4Target runtime Apache Tomcat v6.0 is not defined.错误解决方法

   Eclipse导入工程后工程上显示一个小红叉,但工程里没有文件错误,也没有语法错误,百思不得其解啊,后来在网上找了一些资料说是项目引用的类库路径有问题。【项目】->【右键】->build path->configure build path->libraries】,查看一下引用的类库路径。网上都说是因为这里引用错误引起的,但是我在项目导入的时候做的第一件事情就是修改这里的library,因此不是这个原因。

problems中显示错误是:Target runtime Apache Tomcat 6.0 is not defined. 在网上查了一下终于找到解决方法。方法是:在工程目录下的.settings文件夹里,打开org.eclipse.wst.common.project.facet.core.xml文件,其内容是:

<?xmlversion="1.0"encoding="UTF-8"?> 
<faceted-project
<runtimename="Apache Tomcat v6.0"/> 
<fixedfacet="jst.web"/> 
<fixedfacet="jst.java"/> 
<installedfacet="jst.java"version="6.0"/> 
<installedfacet="jst.web"version="2.5"/> 
<installedfacet="wst.jsdt.web"version="1.0"/> 
</faceted-project>

将其修改为:

<?xml version="1.0" encoding="UTF-8" ?> 

<faceted-project>

</faceted-project>

PS:进行上面的修改以后虽然没有错误了,但是想发布网站demo的时候发现没有【run as->run on server】这个选项了。这时候我们创建一个demo2web project,然后查看.settings下的org.eclipse.wst.common.project.facet.core.xml,我们发现其内容是:

<?xml version="1.0" encoding="UTF-8" ?> 

 <faceted-project>

  <runtime name="Apache Tomcat v6.0.29" /> 

  <fixed facet="jst.web" /> 

  <fixed facet="java" /> 

  <fixed facet="wst.jsdt.web" /> 

  <installed facet="java" version="1.6" /> 

  <installed facet="jst.web" version="2.5" /> 

  <installed facet="wst.jsdt.web" version="1.0" /> 

  </faceted-project>

那么我们只需要将该代码拷贝到网站demo下的.settings目录下,将原来的org.eclipse.wst.common.project.facet.core.xml覆盖即可。覆盖以后我们在Eclipse就能够使用【run as->run on server】来发布demo了。

 

 

 

 

5、The JSP specification requires that an attribute name is preceded by 

whitespace

一个jsp页面在本地运行一点问题没有,发布到服务器就报错了:

The JSP specification requires that an attribute name is preceded by whitespace

最后发现竟然是这么一上小问题,在pageEncoding="GBK"前面少了一个空格

<%@ page language="java" contentType="text/html; charset=GBK" pageEncoding="GBK"%>

加个空格,问题解决





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值