“Spring Boot 日志配置”的版本间的差异

来自姬鸿昌的知识库
跳到导航 跳到搜索
(建立内容为“https://www.bilibili.com/video/BV1iJ411H74S?p=37”的新页面)
 
第1行: 第1行:
 
https://www.bilibili.com/video/BV1iJ411H74S?p=37
 
https://www.bilibili.com/video/BV1iJ411H74S?p=37
 +
 +
=== 示例 无配置文件 ===
 +
 +
==== pom.xml ====
 +
<syntaxhighlight lang="xml">
 +
<?xml version="1.0" encoding="UTF-8"?>
 +
<project xmlns="http://maven.apache.org/POM/4.0.0"
 +
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 +
        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 +
    <modelVersion>4.0.0</modelVersion>
 +
 +
    <parent>
 +
        <artifactId>spring-boot-starter-parent</artifactId>
 +
        <groupId>org.springframework.boot</groupId>
 +
        <version>2.2.2.RELEASE</version>
 +
    </parent>
 +
 +
    <groupId>io.github.jihch</groupId>
 +
    <artifactId>spring-boot-log</artifactId>
 +
    <version>1.0-SNAPSHOT</version>
 +
 +
    <properties>
 +
        <maven.compiler.source>8</maven.compiler.source>
 +
        <maven.compiler.target>8</maven.compiler.target>
 +
    </properties>
 +
 +
    <dependencies>
 +
        <dependency>
 +
            <groupId>org.springframework.boot</groupId>
 +
            <artifactId>spring-boot-starter-web</artifactId>
 +
        </dependency>
 +
 +
        <dependency>
 +
            <groupId>org.springframework.boot</groupId>
 +
            <artifactId>spring-boot-starter-test</artifactId>
 +
            <scope>test</scope>
 +
            <exclusions>
 +
                <exclusion>
 +
                    <groupId>org.junit.vintage</groupId>
 +
                    <artifactId>junit-vintage-engine</artifactId>
 +
                </exclusion>
 +
            </exclusions>
 +
        </dependency>
 +
    </dependencies>
 +
 +
</project>
 +
</syntaxhighlight>
 +
 +
==== SpringBootLogApplication.java ====
 +
<syntaxhighlight lang="java">
 +
import org.springframework.boot.SpringApplication;
 +
import org.springframework.boot.autoconfigure.SpringBootApplication;
 +
 +
@SpringBootApplication
 +
public class SpringBootLogApplication {
 +
 +
    public static void main(String[] args) {
 +
        SpringApplication.run(SpringBootLogApplication.class, args);
 +
    }
 +
 +
}
 +
</syntaxhighlight>
 +
 +
==== SpringBootLogApplicationTests.java ====
 +
<syntaxhighlight lang="java">
 +
import org.junit.jupiter.api.Test;
 +
import org.slf4j.Logger;
 +
import org.slf4j.LoggerFactory;
 +
import org.springframework.boot.test.context.SpringBootTest;
 +
 +
@SpringBootTest
 +
public class SpringBootLogApplicationTests {
 +
 +
    // 声明日志记录器对象
 +
    public static final Logger LOGGER = LoggerFactory.getLogger(SpringBootLogApplicationTests.class);
 +
 +
    @Test
 +
    public void contextLoads() {
 +
        // 打印日志信息
 +
        LOGGER.error("error");
 +
        LOGGER.warn("warn");
 +
        LOGGER.info("info"); // 默认日志级别
 +
        LOGGER.debug("debug");
 +
        LOGGER.trace("trace");
 +
    }
 +
 +
}
 +
</syntaxhighlight>

2023年2月28日 (二) 10:09的版本

https://www.bilibili.com/video/BV1iJ411H74S?p=37

示例 无配置文件

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <artifactId>spring-boot-starter-parent</artifactId>
        <groupId>org.springframework.boot</groupId>
        <version>2.2.2.RELEASE</version>
    </parent>

    <groupId>io.github.jihch</groupId>
    <artifactId>spring-boot-log</artifactId>
    <version>1.0-SNAPSHOT</version>

    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.junit.vintage</groupId>
                    <artifactId>junit-vintage-engine</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>

</project>

SpringBootLogApplication.java

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class SpringBootLogApplication {

    public static void main(String[] args) {
        SpringApplication.run(SpringBootLogApplication.class, args);
    }

}

SpringBootLogApplicationTests.java

import org.junit.jupiter.api.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest
public class SpringBootLogApplicationTests {

    // 声明日志记录器对象
    public static final Logger LOGGER = LoggerFactory.getLogger(SpringBootLogApplicationTests.class);

    @Test
    public void contextLoads() {
        // 打印日志信息
        LOGGER.error("error");
        LOGGER.warn("warn");
        LOGGER.info("info"); // 默认日志级别
        LOGGER.debug("debug");
        LOGGER.trace("trace");
    }

}