一、文件.mymetadata文件
1、部署项目用的,把项目部署到tomcat服务器上时,如果没有这个文件,用myeclipse/Eclipse部署是不能部署到关联的tomcat服务器。
[html] view plain copy
<?xml version=”1.0”枣缺羡 encoding=”UTF-8”?>
<!--
type : 工程类型
name : 工程名称
id : 工程在工作空间内的唯一标识
context-root : 网站根路径
j2ee-spec: J2EE标准
archive : 打包后war文件
-->
<project-module
type=”WEB”
name=”PheebsKM”
id=”myeclipse.1152954865843”
context-root=”/PheebsKM”
j2ee-spec=”1.4”
archive=”PheebsKM.war”>
<attributes>
<!-- value : Web根目录名称 -->
<attribute name=”webrootdir” value=”WebRoot” />
</attributes>
</project-module>
2、在MyEclipse/Eclipse更改项目发布到Tomcat的文件夹
(1)、在自己的workspace中找到当前使用的项目,找到文件.mymetadata,打开后就会看见标签context- root=”/example”(example是自己应用的名称),可以将其改为别的名称。
(2)、选择:工程右键 --》Properties --》Myeclipse --》 Web
[Web-root folder]:/WebRoot
[Web Context-root]:/ROOT,修改context-root对应的值即可。(默认值:当前项目名称)
二、文件:.project
.project描述了一个Eclipse项目。
典型内容
[html] view plain copy
<span style="font-family:SimSunfont-size:18px"><?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<!-- name里的内容代表项目名字,对应了Eclipse项目的名称,不是Maven的finalName -->
<name>demo</name>
<!-- 项目的注释 -->
<comment></comment>
<!-- 引用的项目的名字 -->
<projects>
</projects>
<!-- 有序的列表,定义了一系列的构建命令(buildCommand) -->
<buildSpec>
<buildCommand>
<!-- 项目构建命令的名字 -->
<name>org.eclipse.wst.jsdt.core.javascriptValidator</name>
<!-- 构建命令初始化时需要传递的参数(一般看到的都是空的) -->
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.wst.common.project.facet.core.builder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<!-- 项目中用到的一些特性的列表 -->
<natures>
<!-- 每一个特性的的名字 -->
<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
</natures>
</projectDescription></span>
使用示例
Maven项目的配置
一个Maven项目要确保有如下的内容,如果没有,可以手工加上下面的BuildCommand和natures:
[html] view plain copy
<projectDescription>
<buildSpec>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
</projectDescription>
禁止JavaScript的正确性校验
其实禁止正确性校验是一个不好的习惯,但很多人有这样的需求(唐僧:配置一下exclude路径多好啊,即能进行正确性校验又不会太影响速度),这里给出方案。删除如下的buildCommand即可,也可选择性的删除如下的nature:
[html] view plain copy
<buildCommand>
<name>org.eclipse.wst.jsdt.core.javascriptValidator</name>
<arguments>
</arguments>
</buildCommand>
<natures>
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
</natures>
把一个Java项目变为dynamic web项目
加入如下的buildSpec、nature元素即可:
[html] view plain copy
<buildSpec>
<buildCommand>
<name>org.eclipse.wst.common.project.facet.core.builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
</natures>
拷贝攻略
.project文件可以从同类型的项目中直接拷贝,但需要修改/projectDescription/name里的项目名称。
参考资料
The project description file
二、文件:.classpath
.classpath描述了一个Eclipse项目。
[html] view plain copy
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<!-- 含义:src/main/java属于源码,编译后放到target/classes目录下 -->
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<!-- 代表了配置是从POM.xml里来的,受maven管理,非maven项目可以去掉这个 -->
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<!-- 这里的in
1、首先在eclipse中更改项目名称(alt+shift+R)2、在系统文件中找到项目的根目录下的.mymetadata文件,将project-module节点下的name属性修改为新的项目名
3、关闭tomcat,删除webapps下原来已经部署好的项目
4、重启eclipse,重新部署你的项目,ok,done
eclipse工程名称
原来为p1,发布到webapps下后也是p1,我想让发布后的目录名为p2。
按如下方法修改即可:
打开工程所在目录,找到一个
.mymetadata的文件,用写字板打开,内容大致如下:租搜
<?xml
version="1.0"
encoding="UTF-8"?>
<project-module
type="WEB"
name="Callback"
id="myeclipse.1187165433171"
context-root="/p1"
j2ee-spec="圆雀1.4"
archive="橘型早p1.war">
<attributes>
<attribute
name="webrootdir"
value="WebRoot"
/>
</attributes>
</project-module>
其中Callback是项目名称,而
context-root="/p1"
中的p1为发布后的目录名,将context-root="/p1"
改为
:context-root="/p2"
之后,用eclipse重新发布则发布后的目录名就是p2了。
记得给我分啊
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)