java - Gradle:如何编译使用 com.sun.xml.internal.bind.* 的类?

标签 java eclipse maven-2 classpath gradle

我正在将现有项目从 ant 转换为 Gradle。

不幸的是,有一个 Java 类使用了 com.sun.xml.internal.bind.DatatypeConverterImpl。一方面,我将研究替换该用法,但此时我只是好奇为什么 Gradle 找不到该类,这会导致编译失败。

消息是

package com.sun.xml.internal.bind does not exist

请注意,它在 eclipse 中以及使用 javac ant 任务时编译得很好。 JAVA_HOME 设置为 1.6.0_27。

那么 Gradle 在默认情况下会导致它找不到此类的独特之处是什么?有人如何解决这个问题?




请参阅 Java 代码片段和 build.gradle 文件:

final class Test{
    private static final javax.xml.bind.DatatypeConverterInterface DTC = com.sun.xml.internal.bind.DatatypeConverterImpl.theInstance;

    .....
    DTC.printDateTime(Calendar.getInstance());
}


apply plugin: 'java'
apply plugin: 'application'

mainClassName = "com.foo.bar.Test"
sourceCompatibility = 1.6
version = '5.4.0'

jar {
    manifest {
        attributes 'Implementation-Title': 'Foo', 'Implementation-Version': version, 'Implementation-Vendor': 'Bar'
    }
}

repositories {
    mavenCentral()
}

dependencies {
    compile group: 'commons-lang', name: 'commons-lang', version: '2.4'    
    compile group: 'com.google.guava', name: 'guava', version: '10.0.1'    
    compile group: 'org.hibernate.javax.persistence', name: 'hibernate-jpa-2.0-api', version: '1.0.1.Final'    
    compile group: 'org.hibernate', name: 'hibernate-core', version: '3.6.7.Final'
    compile group: 'jdom', name: 'jdom', version: '1.0'        
    compile group: 'log4j', name: 'log4j', version: '1.2.16'

    runtime group: 'antlr', name: 'antlr', version: '2.7.6'
    runtime group: 'backport-util-concurrent', name: 'backport-util-concurrent', version: '3.1'
    runtime group: 'c3p0', name: 'c3p0', version: '0.9.1.2'
    runtime group: 'cglib', name: 'cglib', version: '2.2'
    runtime group: 'commons-beanutils', name: 'commons-beanutils', version: '1.8.3'
    runtime group: 'commons-codec', name: 'commons-codec', version: '1.3'
    runtime group: 'commons-collections', name: 'commons-collections', version: '3.2.1'
    runtime group: 'commons-io', name: 'commons-io', version: '1.4'    
    runtime group: 'commons-logging', name: 'commons-logging', version: '1.1.1'    
    runtime group: 'dom4j', name: 'dom4j', version: '1.6.1'
    runtime group: 'javassist', name: 'javassist', version: '3.12.0.GA'    
    runtime group: 'javax.transaction', name: 'jta', version: '1.1'        
    runtime group: 'org.slf4j', name: 'slf4j-api', version: '1.6.2'
    runtime group: 'xerces', name: 'xerces', version: '2.4.0'        
    runtime group: 'xerces', name: 'xercesImpl', version: '2.10.0'
    runtime group: 'xml-apis', name: 'xml-apis', version: '2.0.2'                
}

编辑

C:\>gradle -v

------------------------------------------------------------
Gradle 1.0-milestone-3
------------------------------------------------------------

Gradle build time: Monday, 25 April 2011 5:40:11 PM EST
Groovy: 1.7.10
Ant: Apache Ant(TM) version 1.8.2 compiled on December 20 2010
Ivy: 2.2.0
JVM: 1.6.0_27 (Sun Microsystems Inc. 20.2-b06)
OS: Windows XP 5.1 x86

最佳答案

  • 解决方案 #1:

将 rt.jar 复制(而不是移动)到不同于 <JDK_install_dir>\jre\lib\rt.jar 的位置 (例如 c:\rt.jar )并像下面这样运行你的编译器:

javac -cp c:\rt.jar your_file.java
  • 解决方案#2:

使用编译器选项编译 -XDignore.symbol.file=true

关于java - Gradle:如何编译使用 com.sun.xml.internal.bind.* 的类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7779486/

相关文章:

java - 在 WebDriver 中处理没有 ID 或 Class 属性的 iframe

java - 获取特定的 JFrame 组件以更改其值

eclipse - 使用eclipse juno配置Java CV

xml - 使用环境变量的 Maven 本地存储库

java - 什么时候在Java中初始化数组?

java - 如何在接口(interface)中初始化对象?

java - 在 Tomcat java.lang.NoClassDefFoundError 下访问 servlet 时?

java - 向 Eclipse 工具栏中的 "NEW"按钮添加项目

eclipse - 如何重新安装 Eclipse 而不会丢失我的项目和插件?

java - 使用 maven 构建后未找到来自 src/main/resources 的资源