Eclipse中Java build path的使用

1、Eclipse中,工程属性的Java Build Path的Library标签页下,有如下几个按钮:
Add Jars...添加JAR包,是指本Eclipse当前包含的工程中的,在工程列表下选取即可
Add External Jars...添加外部的JAR,是指外部的,需要用文件管理器,在电脑硬盘上选取。
Add Variable..添加变量,Eclipse的编译时用到的的环境变量
Add Library...添加库,是指一些已经定义好的jar的集合,因为它们经常是一起用
Add Class Folder...添加类的目录,是指本Eclipse范围中的,在工程列表下选取接口。
Add External Folder...添外部加类的目录,需要用文件管理器,在电脑硬盘上选取。
Add Jars和Add External Jars与Add Library中User Libraries的添加的JAR包,
2、是否会被打入最终的可执行文件中,这取决于在Order And Export中是否点选!
3、一个工程,引用其他工程,可以在工程属性的java Build Path的Projects标签下Add!
这种引用,并不会将被引用的工程中的源文件,打入到当前工程生成的可执行文件中。
4、如需打入,可以用Source标签下Link Source(Browse...被引用工程的路径)完成。

时间: 2024-10-26 17:46:23

Eclipse中Java build path的使用的相关文章

eclipse中java build path下 allow output folders for source folders 无法勾选,该如何解决 eclipse中java build path下 allow output folders for source folders 无法勾选,

在创建maven工程时,在设置output folders时,总是勾选以后,老是自动恢复到原来的状态,对比其他的maven的工程发现是在创建maven时候选择的项目为pom,而不是war或者jar,将pom的类型切换到war就可以勾选了

Eclipse下Java Build Path下Libraies中添加 Maven dependencies 失败解决方案

当maven 仓库有jar时,tomcat生成时总是报javaclassno..........无这个文件:用一下方法 转载:http://bugyun.iteye.com/blog/2311848  进行交流学习. Q:点击工程右键 -> Java Build Path -> Libraries -> Add Library -> next -> finish 后,Libraries 下看不到 maven . A: 1. 点击工程右键 -> Maven -> U

Eclipse工程中Java Build Path中的JDK版本和Java Compiler Compiler compliance level的区别(转)

在这里记录一下在eclipse中比较容易搞混淆和设置错误的地方.如下图所示的功能: 最精准的解释如下: Build Path是运行时环境  Compiler是编译时环境  假设,你的代码用到泛型,Build Path环境为1.5,Compiler环境为1.4,那么会显示编译错误,无法编译:但是这样的web项目是可以在web容器中运行的,前提是你的容易支持1.5语法. Build Path里面是你的class文件的运行环境级别,非编译器需要使用到的,例如,如果用的1.4就不能使用泛型.而Compi

eclipse中web工程新建jsp文件报错:The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path

web工程中新建jsp文件提示:The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path 解决方案: 1.右击web工程->属性或Build Path->Java Build Path->Libraries-> Add Libray...->Server Runtime ->JBoss 7.1 Runtime   2.切换到Java Bui

Eclipse中新建Maven Web项目报错:The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path

在maven web项目中的index.jsp中的错误信息如下: The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path 从错误信息可以看出来,找不到该类,也就是说找不到相应jar包. 所以解决方法就是引用相应jar包即可. 前提: 需要设置Server Runtime, Window -> Perferences -> Server -> Runtime

eclipse中,项目有红叉之- The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path

1.The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path 2.原因:确实servlet-api.jar 3.导入servlet-api.jar,其中一种方法:项目右击->build path->configure build path->add library->server runtime->apache tomcat

eclipse:报错信息The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path

JavaWeb: 报错信息The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path 今天建立了一个Javaweb工程,并在eclipse中配置了Web容器Tomcat.JSP页面顶端出现“红色”的报错信息:The superclass "javax.servlet.http.HttpServlet" was not found on the Java Bu

eclipse新建maven项目报错The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path的解决方案

具体表现为: 使用Eclipse+Maven建立了一个Javaweb工程,JSP页面顶端出现“红色”的报错信息:The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path. 解决方法: 在pom.xml中的  <build></build>中  添加: <plugins> <!-- 编码和编译和JDK版本 --> <plug

Eclipse Java Build Path详解

Eclipse Java Build Path详解 1.设置"source folder"与"output folder". * source folder:存放.java源文件的根目录;    * output folder:.class编译输出的根目录:    * 纯“java project”中,一般把"src"设置为source folder,把bin设置为output folder:    * 在“web project”中,一般把&q