我正在使用这个:
FileInputStream serviceAccount;
try {
serviceAccount = new FileInputStream("firebase_key.json");
} catch (FileNotFoundException e) {
System.out.println(e.getMessage());
return;
}
System.out.println("Reached here!");
FirebaseOptions options = new FirebaseOptions.Builder()
.setCredential(FirebaseCredentials.fromCertificate(serviceAccount))
.setDatabaseUrl("https://*.firebaseio.com/")
.build();
FirebaseApp.initializeApp(options);
但是,应用程序崩溃并显示
java.lang.NoClassDefFoundError for FirebaseOptions$Builder
我的
build.gradle
:dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile 'com.google.firebase:firebase-admin:4.1.1'
}
我正在使用IntelliJ。
Logcat:
Exception in thread "main" java.lang.NoClassDefFoundError: com/google/firebase/FirebaseOptions$Builder
10:57:43 AM web.1 | at com.x.*.TokenGenerator.main(TokenGenerator.java:26)
10:57:43 AM web.1 | Caused by: java.lang.ClassNotFoundException: com.google.firebase.FirebaseOptions$Builder
10:57:43 AM web.1 | at java.net.URLClassLoader.findClass(Unknown Source)
10:57:43 AM web.1 | at java.lang.ClassLoader.loadClass(Unknown Source)
10:57:43 AM web.1 | at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
10:57:43 AM web.1 | at java.lang.ClassLoader.loadClass(Unknown Source)
我在应用程序的根目录中有我的firebase_key.json。
是什么原因造成的?
最佳答案
问题出在我正在使用以下命令进行构建:
gradlew clean install
但是,由此生成的Jar不包含依赖项。 Firebase Admin SDK是一个依赖项。
所以我要做的是使用shadowJar,它生成一个包含依赖项的Jar。与
gradlew clean install
不同。然后,在Procfile中,将其设置为shadowJar生成的Jar。我看到的唯一问题是,现在我必须去IntelliJ并从那里运行shadowJar,因为似乎没有任何命令可以从命令行运行它。
希望这可以帮助