(1).classpath
<classpathentry kind="src" path=""/>
<classpathentry kind="con" path=""/>
<classpathentry kind="lib" path=""/>
<classpathentry kind="output" path="bin"/>
kind="src" :源文件的具体位置
kind="con" :运行的系统环境(如jre\maven)
kind="lib" :工程lib的具体位置
kind="output" :项目的输出目录
(2).project
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>myibatis</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
<linkedResources>
<link>
<name>mybatis</name>
<type>2</type>
<location></location>
</link>
</linkedResources>
</projectDescription>
<name>:工程名
<comment>:工程注释描述
<natures>:项目运行时需要的eclipse插件,其具体加载信息放在<buildSpec>
<linkedResources>:项目中的文件链接
(3).settings
存放各种插件的配置文件