java - Spring Boot 和日志记录

标签 java spring logging spring-boot slf4j

我有带有 slf4j 日志记录的 Spring Boot 应用程序。

Gradle :

buildscript {
    ext {
        springBootVersion = '2.0.0.BUILD-SNAPSHOT'
    }
    repositories {
        mavenCentral()
        maven { url "https://repo.spring.io/snapshot" }
        maven { url "https://repo.spring.io/milestone" }
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
    }
}

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'

dependencies {
    compile fileTree(dir: 'lib', include: '*.jar')
    compile group: 'com.google.guava', name: 'guava', version: '17.0'

    // Spring
    compile 'org.springframework.boot:spring-boot-starter-web:1.5.1.RELEASE'
    compile group: 'org.springframework.boot', name: 'spring-boot-starter-parent', version: '1.5.1.RELEASE'

    // Spring Security
    compile 'org.springframework.boot:spring-boot-starter-security'

    // Template engine
    compile 'org.springframework.boot:spring-boot-starter-thymeleaf:1.5.1.RELEASE'
    compile 'org.thymeleaf.extras:thymeleaf-extras-springsecurity3:2.1.2.RELEASE'
    compile group: 'org.thymeleaf', name: 'thymeleaf-spring5', version: '3.0.3.M1'

    // DB and ORM
    compile 'org.springframework.boot:spring-boot-starter-data-jpa:1.5.1.RELEASE'
    compile 'org.apache.derby:derby:10.13.1.1'

    // Form validation
    compile 'org.hibernate:hibernate-validator:5.2.2.Final'
    compile 'javax.el:el-api:2.2'

    // SNMP
    compile 'org.snmp4j:snmp4j:1.10.1'
    compile 'org.snmp4j:snmp4j-agent:1.2'

    testCompile('org.springframework.boot:spring-boot-starter-test')
 }

类(class):

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

.....

@SpringBootApplication
public class MyApplication {

    private static final Logger LOGGER = LoggerFactory.getLogger(MyApplication.class);

    public static void main(String[] args) {
        SpringApplication.run(new Class<?>[] {MyApplication.class}, args);

.....

它以前有效。现在我在创建 Logger 时遇到了异常。我没有改变任何东西,只是尝试再次构建项目。也许 Spring Boot 版本已更改,我不知道。

Exception in thread "main" java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory
    at by.virkom.MyApplication.<clinit>(MyApplication.java:18)
Caused by: java.lang.ClassNotFoundException: org.slf4j.LoggerFactory
    at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:335)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
    ... 1 more

我尝试排除 spring-boot-starter-logging 并连接 spring-boot-starter-log4j 但它对我不起作用。然后使用 Log4j 处理 ClassNotFoundException。我该如何修复它?

P.S.:当我评论创建记录器时,我有另一个异常(exception):

Exception in thread "main" java.lang.NoClassDefFoundError: org/springframework/boot/SpringApplication
    at by.virkom.MyApplication.main(MyApplication.java:22)
Caused by: java.lang.ClassNotFoundException: org.springframework.boot.SpringApplication
    at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:335)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
    ... 1 more

最佳答案

将其添加到您的 gradle 文件中:

compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.5'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.5'
compile group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.5'

关于java - Spring Boot 和日志记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44290154/

相关文章:

java - 无法在 jsp 中使用 ${data} 显示数据,而 request.getAttribute ("data")确实返回值

java - Libgdx ImageButton 填充?

java - HTTP 状态 415 - 将数据从 ajax 作为 json 传递到 Restfull 服务器时出现不支持的媒体类型错误

php - Syslog : What is the Configuration for Log errors using syslog in my PHP Application

java - 验证从 php 生成的 jwt token 时,Jjwt 抛出签名错误

spring - 方法不允许 405,在 grails 从 2.5.2 升级到 3.3.11 后点击 POST 请求时

Spring Batch 将值列表作为参数传递

java - 在 Websphere 8.5.5.10 中添加 TLS 1.2 后出现 Unsupported SignatureAndHashAlgorithm 错误

java - GWT 日志记录仅显示级别 SERVE

python - 将控制台日志输出重定向到flask-socketio