.classpath文件解读
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<!--源码目录-->
<classpathentry kind="src" path="src"/><classpathentry kind="src" path="config"/>
<!-- 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"/>
<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.web.container"/>
<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.module.container"/>
<!-- 项目中使用的jar包 -->
<classpathentry kind="lib" path="WebRoot/WEB-INF/lib/jstl/jstl.jar"/>
<!-- 单元测试 -->
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<!-- 编译输出的路径-->
</classpath>
.mymetadata文件解读
<?xml version="1.0" encoding="UTF-8"?>
<!--
type : 工程类型
name : 工程名称
id : 工程在工作空间内的唯一标识
context-root : 网站根路径
j2ee-spec: J2EE标准
archive : 打包后war文件
-->
<project-module type="WEB" name="JavaSpringMVC_Mybatis" id="myeclipse.1450423879666" context-root="/JavaSpringMVC_Mybatis" j2ee-spec="5.0" archive="JavaSpringMVC_Mybatis.war">
<attributes>
<attribute name="webrootdir" value="WebRoot" />
</attributes>
</project-module>
.project文件解读
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<!-- 工程名称 <name>-->
<name>JavaSpringMVC_Mybatis</name>
<comment></comment>
<projects>
</projects>
<!-- 编译器指定 <buildSpec>-->
<buildSpec>
<buildCommand>
<name>org.eclipse.wst.common.project.facet.core.builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<!-- 核心特性 <natures> -->
<natures>
<nature>com.genuitec.eclipse.ast.deploy.core.deploymentnature</nature>
</natures>
</projectDescription>