- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试使用 Gradle,文件如下所示:
// Apply the java plugin to add support for Java
apply plugin: 'java'
// In this section you declare where to find the dependencies of your project
repositories {
// Use 'jcenter' for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
mavenCentral()
jcenter()
}
jar {
manifest {
attributes 'Main-Class': 'execute.Entry'
}
}
// In this section you declare the dependencies for your production and test code
dependencies {
// The production code uses the SLF4J logging API at compile time
compile 'org.slf4j:slf4j-api:1.7.12'
compile 'org.apache.logging.log4j:log4j:2.3'
// Declare the dependency for your favourite test framework you want to use in your tests.
// TestNG is also supported by the Gradle Test task. Just change the
// testCompile dependency to testCompile 'org.testng:testng:6.8.1' and add
// 'test.useTestNG()' to your build script.
testCompile 'junit:junit:4.12'
}
如你所见,我添加了两个依赖,想在一个类中使用
package execute;
import message.*;
import org.apache.log4j.Logger;
public class Entry {
public static void main(String[] args) {
Service s = new Service();
String msg = s.GetMessage();
LOGGER.info("Received msg: " + msg);
}
}
当我执行 gradle assemble
语句时,出现编译错误。
D:\Java\entrypoint\src\main\java\execute\Entry.java:4: error: package org.apache.log4j does not exist
import org.apache.log4j.Logger;
^
D:\Java\entrypoint\src\main\java\execute\Entry.java:12: error: cannot find symbol
LOGGER.info("Received msg: " + msg);
^
symbol: variable LOGGER
location: class Entry
2 errors
:compileJava FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':compileJava'.
> Compilation failed; see the compiler error output for details.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
Total time: 6.261 secs
Compilation failed; see the compiler error output for details.
我做错了什么?
更新我将代码更改为:
package execute;
import message.*;
import org.apache.logging.log4j.Logger;
import org.apache.logging.log4j.LogManager;
public class Entry {
private static final Logger logger = LogManager.getLogger("HelloWorld");
public static void main(String[] args) {
Service s = new Service();
String msg = s.GetMessage();
logger.info("Hello, World!");
}
}
编译器提示:
Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/logging/log4j/LogManager
at execute.Entry.<clinit>(Entry.java:9)
Caused by: java.lang.ClassNotFoundException: org.apache.logging.log4j.LogManager
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
... 1 more
更新 2
执行后:
>gradle dependencies
:dependencies
------------------------------------------------------------
Root project
------------------------------------------------------------
archives - Configuration for archive artifacts.
No dependencies
compile - Compile classpath for source set 'main'.
\--- org.apache.logging.log4j:log4j-api:2.3
default - Configuration for default artifacts.
\--- org.apache.logging.log4j:log4j-api:2.3
runtime - Runtime classpath for source set 'main'.
\--- org.apache.logging.log4j:log4j-api:2.3
testCompile - Compile classpath for source set 'test'.
+--- org.apache.logging.log4j:log4j-api:2.3
\--- junit:junit:4.12
\--- org.hamcrest:hamcrest-core:1.3
testRuntime - Runtime classpath for source set 'test'.
+--- org.apache.logging.log4j:log4j-api:2.3
\--- junit:junit:4.12
\--- org.hamcrest:hamcrest-core:1.3
BUILD SUCCESSFUL
最佳答案
代替
import org.apache.log4j.Logger;
使用
import org.apache.logging.log4j.Logger;
并定义 LOGGER 的实例
private static final Logger LOGGER = LogManager.getLogger("HelloWorld");
查看此示例 http://logging.apache.org/log4j/2.x/manual/api.html
这与Gradle无关
关于java - Gradle 找不到依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30932526/
例如,我有一个父类Author: class Author { String name static hasMany = [ fiction: Book,
代码如下: dojo.query(subNav.navClass).forEach(function(node, index, arr){ if(dojo.style(node, 'd
我有一个带有 Id 和姓名的学生表和一个带有 Id 和 friend Id 的 Friends 表。我想加入这两个表并找到学生的 friend 。 例如,Ashley 的 friend 是 Saman
我通过互联网浏览,但仍未找到问题的答案。应该很容易: class Parent { String name Child child } 当我有一个 child 对象时,如何获得它的 paren
我正在尝试创建一个以 Firebase 作为我的后端的社交应用。现在我正面临如何(在哪里?)找到 friend 功能的问题。 我有每个用户的邮件地址。 我可以访问用户的电话也预订。 在传统的后端中,我
我主要想澄清以下几点: 1。有人告诉我,在 iOS 5 及以下版本中,如果您使用 Game Center 设置多人游戏,则“查找 Facebook 好友”(如与好友争夺战)的功能不是内置的,因此您需要
关于redis docker镜像ENTRYPOINT脚本 docker-entrypoint.sh : #!/bin/sh set -e # first arg is `-f` or `--some-
我是一名优秀的程序员,十分优秀!