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>

  • 相关阅读:
    C# 反射机制(转)
    asp.net 控件开发(三)处理标签间内容
    WCF学习(三)数据契约1
    个人的一点私事
    Asp.net 控件开发(四) 数据回传
    WCF学习 (四) 数据契约的事件
    wcf学习(一):预览
    WCF学习(二)服务契约
    css3图片3D翻转
    Javascript面向对象(一)(共有方法,私有方法,特权方法)
  • 原文地址:https://www.cnblogs.com/cero/p/4996900.html
Copyright © 2011-2022 走看看