首页 > 代码库 > 解析Myeclipse项目下的.classpath文件 (转)
解析Myeclipse项目下的.classpath文件 (转)
按 Ctrl+C 复制代码
按 Ctrl+C 复制代码
myeclipse项目中的.classpath文件: <?xml version=”1.0” encoding=”UTF-8”?> <classpath> <!-- 源码目录 --> <classpathentry kind=”src” path=”src”/> <!-- JDK运行时容器 --> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="con" path="melibrary.com.genuitec.eclipse.j2eedt.core.MYECLIPSE_JAVAEE_5_CONTAINER"/> <!-- 以下为类库path为你自定义的目录,jar文件的路径 --> <classpathentry kind="lib" path="WebRoot/WEB-INF/lib/sino-base-1.3.2.jar"/> <classpathentry kind="lib" path="WebRoot/WEB-INF/lib/sino-bms-1.4.3.jar"/> <classpathentry kind="lib" path="WebRoot/WEB-INF/lib/sino-frame-1.2.2.jar"/> <!-- 编译后输出class目录 --> <classpathentry kind="output" path="WebRoot/WEB-INF/classes"/> </classpath> --------------------------------------------------------------------------- .project文件: <?xml version=”1.0” encoding=”UTF-8”?> <projectDescription> <!-- 工程名称 这里定义的name的值如果已经工作空间的其他项目占用了, 当使用myeclipse的import功能导入项目时,就会导不进来--> <name>sxVIP</name> <comment></comment> <projects></projects> <!-- 编译器指定--> <buildSpec> <buildCommand> <name>org.eclipse.wst.common.project.facet.core.builder</name> <arguments> </arguments> </buildCommand> </buildSpec> <!-- 核心特性 --> <natures> <nature>org.eclipse.jem.workbench.JavaEMFNature</nature> <nature>com.genuitec.eclipse.ast.deploy.core.deploymentnature</nature> <nature>com.genuitec.eclipse.j2eedt.core.webnature</nature> </natures> </projectDescription> -------------------------------------------------------------------------- 对于myeclipse工程多了一个(web 应用程序才有) .mymetadata文件: <?xml version=”1.0” encoding=”UTF-8”?> <!-- type : 工程类型 name : 工程名称 id : 工程在工作空间内的唯一标识 context-root : 网站根路径 j2ee-spec: J2EE标准 archive : 打包后war文件 --> <project-module type=”WEB” name=”upload” id=”myeclipse.1152954865843” context-root=”/upload” j2ee-spec=”1.4” archive=”upload.war”> <attributes> <!-- value : Web根目录名称 --> <attribute name=”webrootdir” value=”WebRoot” /> </attributes> </project-module>
当为myeclipse的项目修改部署的名字时,
.mymetedata文件中的context-root的值会相应的变化
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。