7

当 maven 通过 antrun 执行这个 java 代码时,我得到可怕的错误=206,文件名或扩展名太长

<java classname="com.me.api" failonerror="true" fork="true" maxmemory="128m" output="${wsdlFile}.out">
  <arg value="${className}" />
  <arg value="${name}" />
  <arg value="${wsdlFile}" />
  <classpath>
    <path refid="maven.test.classpath" />
  </classpath>

4

4 回答 4

6

由于本地 Maven 存储库的结构和位置,Maven 创建了冗长的类路径。我们需要使用一个pathing jar。

  • 将类路径转换为字符串
  • 转义 Windows 驱动器号(C: = 坏 \C: = 好)
  • 使用类路径属性创建仅清单 jar
  • 使用路径 jar 而不是 maven 编译类路径

<mkdir dir="${classpath-compile.dir}"/>

<!-- Convert into usable string .   -->
<pathconvert property="compile_classpath_raw" pathsep=" ">
    <path refid="maven.compile.classpath"/>                        
</pathconvert>

<!-- escape windows drive letters (remove C: from paths -- need to wrap with a condition os.family="windows")-->
<propertyregex property="compile_classpath_prep" 
  input="${compile_classpath_raw}"
  regexp="([A-Z]:)"
  replace="\\\\\1"
  casesensitive="false"
  global="true"/>

<!-- Create pathing Jars -->
<jar destfile="${classpath-compile.jar}">
  <manifest>
    <attribute name="Class-Path" value="${compile_classpath_prep}"/>
  </manifest>                      
</jar>

<java classname="com.me.api" failonerror="true" fork="true" maxmemory="128m" output="${wsdlFile}.out">
  <arg value="${className}" />
  <arg value="${name}" />
  <arg value="${wsdlFile}" />
  <classpath>
    <pathelement location="${classpath-compile.jar}" />
  </classpath>

于 2013-07-19T14:44:49.067 回答
4

扩展@user4386022 提供的答案:您可以定义(从 Ant 1.8 开始)这个宏,如果您在构建过程中的不同位置遇到相同的问题,它可以为您提供帮助(并且您不能只是复制粘贴相同的片段,因为 Ant不允许重新定义属性,因此您将收到一条错误消息,指出“manifest.classpath”已定义。)

<macrodef name="create-classpath-jar" description="Create classpath Jar, to avoid getting the error about CreateProcess error=206, The filename or extension is too long">
    <attribute name="classpathjar"/>
    <attribute name="classpathref"/>
    <sequential>
        <!-- Turn the classpath into a property formatted for inclusion in a MANIFEST.MF file -->
        <local name="manifest.classpath.property"/>
        <manifestclasspath property="manifest.classpath.property" jarfile="@{classpathjar}">
            <classpath refid="@{classpathref}" />
        </manifestclasspath>
        <!-- Create the Jar -->
        <jar destfile="@{classpathjar}">
            <manifest>
                <attribute name="Class-Path" value="${manifest.classpath.property}"/>
            </manifest>                      
        </jar>
    </sequential>
</macrodef>

要在目标或任务中使用宏,只需像这样使用它:

<path id="myclasspath">
   .........
</path>
<create-classpath-jar classpathjar="classpath-compile.jar" classpathref="myclasspath" />
于 2015-03-31T11:12:45.420 回答
2

如果使用 Ant 1.7 或更高版本,您可以利用 manifestclasspath 任务生成清单文件,然后将其包含在 jar 中以在 javac 类路径上使用

<!-- turn the classpath into a property formatted for inclusion in a MANIFEST.MF file -->
<manifestclasspath property="manifest.classpath"
                   jarfile="${classpath-compile.jar}">
  <classpath refid="maven.compile.classpath" />
</manifestclasspath>

<!-- Create pathing Jars -->
<jar destfile="${classpath-compile.jar}">
  <manifest>
    <attribute name="Class-Path" value="${manifest.classpath}"/>
  </manifest>                      
</jar>

<java classname="com.me.api" failonerror="true" fork="true" maxmemory="128m" output="${wsdlFile}.out">
  <arg value="${className}" />
  <arg value="${name}" />
  <arg value="${wsdlFile}" />
  <classpath>
    <pathelement location="${classpath-compile.jar}" />
</classpath>
于 2014-12-22T17:13:14.280 回答
0

fork="true"通过从 build.xml 文件中的 javac 目标中删除来修复问题。如果您的构建过程必须进行分叉,请参考上面的解决方案。

于 2020-02-12T14:33:16.480 回答