zoukankan      html  css  js  c++  java
  • Eclipse下.project和.classpath作用(转)

    1. classpath作用

      定义项目的结构,如src、output、con、lib等。 

      源文件的具体位置(kind="src")

      运行的系统环境(kind="con")

      工程的library的具体位置信息(kind="lib")

      在每个lib的xml子节点中,有关于它的其它配置信息(例如我配置的那个"javadoc_location")

      项目的输出目录(kind="output")

      样本:

      <?xml version="1.0" encoding="UTF-8"?>
      <classpath>
       <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>
         <attribute name="maven.pomderived" value="true"/>
        </attributes>
       </classpathentry>
       <classpathentry kind="src" output="target/test-classes" path="src/test/java">
        <attributes>
         <attribute name="optional" value="true"/>
         <attribute name="maven.pomderived" value="true"/>
        </attributes>
       </classpathentry>
       <classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
        <attributes>
         <attribute name="maven.pomderived" value="true"/>
        </attributes>
       </classpathentry>
       <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6">
        <attributes>
         <attribute name="maven.pomderived" value="true"/>
        </attributes>
       </classpathentry>
       <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
        <attributes>
         <attribute name="maven.pomderived" value="true"/>
        </attributes>
       </classpathentry>
       <classpathentry kind="output" path="target/classes"/>
      </classpath>
       

    2. .project作

      工程名<name></name>

      工程注释描述<comment></comment>

      运行时需要的额外Eclipse插件<natures></natures>,及其具体加载方式信息<buildSpec></buildSpec>

      如果你在开发过程中向工程里面加入了很多额外的插件,则必然会导致你的Eclipse启动速度变慢。在这种情况下,你可以到这个文件里面去掉一些插件,不过这样一来你在开启那些关联文件的时候会加载那些插件

             样本:

    <?xml version="1.0" encoding="UTF-8"?>
    <projectDescription>
     <name>log4j-jmx-gui</name>
     <comment></comment>
     <projects>
     </projects>
     <buildSpec>

    <buildCommand>
       <name>org.eclipse.jdt.core.javabuilder</name>
       <arguments>
       </arguments>
      </buildCommand>

      <buildCommand>
       <name>org.eclipse.m2e.core.maven2Builder</name>
       <arguments>
       </arguments>
      </buildCommand>
     </buildSpec>
     <natures>
      <nature>org.eclipse.m2e.core.maven2Nature</nature>
      <nature>org.eclipse.jdt.core.javanature</nature>
     </natures>
    </projectDescription>

  • 相关阅读:
    Android 获取自带浏览器上网记录
    android 中的 ViewPager+ Fragment
    Git分支操作
    图形验证码的识别
    mac平台搭建安卓开发环境
    [报错集合]Uncaught ReferenceError: xxx is not defined
    Centos安装Python3
    VSCode 代码格式化 快捷键
    Mac下用Parallels Desktop安装Ubuntu
    请求头headers
  • 原文地址:https://www.cnblogs.com/cero/p/4996900.html
Copyright © 2011-2022 走看看