gpt4 book ai didi

java - JarJar 不重命名引用

转载 作者:行者123 更新时间:2023-11-30 10:31:14 25 4
gpt4 key购买 nike

我正在使用 Google 的 jarjar 将依赖项重新打包到我的应用程序的 fat jar 中。在运行重新打包的 jar 时,我得到 NoClassDefFoundError 例如:

Exception in thread "main" java.lang.NoClassDefFoundError: ch/qos/logback/classic/LoggerContext
Caused by: java.lang.ClassNotFoundException: ch.qos.logback.classic.LoggerContext

我反编译了重新打包的 jar,发现导入语句和我的代码中对依赖项的引用没有被重构。我哪里错了?

这是我运行 jarjar 的方式:

java -jar jarjar-1.4.jar process repackageRules.txt myApp.jar app_repackaged.jar

我在 repackageRules.txt 中列出的规则:

rule javassist.** company.@0
rule org.eclipse.** company.@0
rule ch.qos.** company.@0
rule com.fasterxml.** company.@0
rule biz.paluch.** company.@0

我的build.gradle:

/* Gradle version: 3.0 */
apply plugin: 'java'
apply plugin: 'jacoco'

group='com.company'
version=0.1

repositories {
jcenter()
}

dependencies {
compile group: 'org.javassist', name: 'javassist', version: '3.20.0-GA'
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.1.7'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.8.6'
compile group: 'org.eclipse.jdt', name: 'org.eclipse.jdt.core', version: '3.12.2'
compile 'biz.paluch.logging:logstash-gelf:1.11.0'
testCompile 'junit:junit:4.12'
}

// Create jar with manifest as described
jar {
manifest {
attributes ('Premain-Class': 'com.company.instrumentation.Agent',
'Can-Redefine-Classes': true,
'Can-Retransform-Classes': true,
'Can-Set-Native-Method-Prefix': true,
'Main-Class': 'com.company.Main')
}
}

//create a single Jar with all dependencies
task fatJar(type: Jar) {
manifest.from jar.manifest
classifier = 'all'
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
} {
// to prevent duplicate files in jar
exclude "META-INF/*"
exclude '.api_description'
exclude '.options'
exclude '*.html'
exclude 'plugin.properties'
exclude 'plugin.xml'
exclude 'about_files/*'
}
with jar
}

我尝试使用 java -jar jarjar-1.4.jar find class myApp.jar

检查 jarjar 是否正确检测类之间的依赖关系

我的代码中的所有类都出现这样的错误:Error reading com/company/Main.class: null

是什么导致了这个问题?

最佳答案

这个错误是因为JarJar使用了不支持JDK 8字节码的ASM 4.0。这可以通过构建这个 fork of JarJar 来解决修改为使用 ASM 5.0。

关于java - JarJar 不重命名引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43304586/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com