:没有原生实现sfl4j-api
的日志框架,这些框架需要使用适配层与``sfl4j-api`接口适配。
纵向看,每个application都对应一种实现方式。接下来一一来说明下具体实现方式。
说明
本文使用的sfl4j-api版本是2.0.6版本,JDK是17
未绑定实现
未绑定实现肯定是不能使用的,也就是说只有slf4j-api
的接口定义,没有具体地实现。
示例项目:slf4j-unbound
依赖说明
<?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>
<groupId>com.itlab1024.log</groupId>
<artifactId>slf4j-unbound</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.6</version>
</dependency>
</dependencies>
</project>
只引入了slf4j-api
!
测试类
package com.itlab1024.log;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class com.itlab1024.log.Main {
public static final Logger logger = LoggerFactory.getLogger(com.itlab1024.log.Main.class);
public static void main(String[] args) {
logger.debug("debug");
logger.info("info");
logger.warn("warn");
logger.error("error");
}
}
运行结果
日志并没有正常输出,从红色文字提示可知道,没有提供Slf4j的实现框架(provider)。
绑定logback实现
通常使用logback只需要引入logback-classic
即可,它内部的pom依赖了sfl4j-api
和logback-core
,会自动下载下来响应的依赖。
依赖说明
<?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>
<groupId>com.itlab1024.log</groupId>
<artifactId>slf4j-logback-classic</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.4.5</version>
</dependency>
</dependencies>
</project>
上面pom中我只依赖了logback-classic
。通过idea工具可以看到该项目的所有依赖情况:
可以看到,自动下载了logback-core:1.4.5
和slf4j-api:2.0.4
,当然也可以手动引入这两个依赖(不同版本)。
测试类
package com.itlab1024.log;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class com.itlab1024.log.Main {
public static final Logger logger = LoggerFactory.getLogger(com.itlab1024.log.Main.class);
public static void main(String[] args) {
logger.debug("debug");
logger.info("info");
logger.warn("warn");
logger.error("error");
}
}
运行结果
可以看到能够正常打印日志信息。
配置文件
logback支持使用xml的方式配置日志的相关信息,需要在classpath下(maven项目的resources下),创建logback.xml
文件。
<configuration xmlns="http://ch.qos.logback/xml/ns/logback"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://ch.qos.logback/xml/ns/logback
https://raw.githubusercontent.com/enricopulatzo/logback-XSD/master/src/main/xsd/logback.xsd">
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<!-- encoders are assigned the type
ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
<encoder>
<pattern>ITLab1024---%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} -%kvp- %msg%n</pattern>
</encoder>
</appender>
<root level="debug">
<appender-ref ref="STDOUT" />
</root>
</configuration>
特别注意config的配置,此配置会让你在xml中编辑的时候,自动提示!!!,可以去看我的另一个博客IDEA下Logback.xml自动提示功能配置 - 知乎 (zhihu.com)
再次运行程序查看运行结果:
可以看到,配置文件已经生效。
绑定reload4j(log4j 1.x升级版)
log4j
的1.x
版本是一个通用版本,但是由于2022年的log4j漏洞原因,slf4j-log4j
模块在build
时,会自动重定向至slf4j-reload4j
模块。也就是说如果想用log4j
的话,就直接使用哦个reload4j
吧。
示例项目:slf4j-reload4j
依赖说明
通常只需要引入slf4j-reload4j
即可,会自动下载其他依赖项slf4j-api
和reload4j
。
<?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>
<groupId>com.itlab1024.log</groupId>
<artifactId>slf4j-reload4j</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-reload4j</artifactId>
<version>2.0.6</version>
</dependency>
</dependencies>
</project>
看下下载下来的依赖项
测试类
package com.itlab1024.log;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class com.itlab1024.log.Main {
public static final Logger logger = LoggerFactory.getLogger(com.itlab1024.log.Main.class);
public static void main(String[] args) {
logger.debug("debug");
logger.info("info");
logger.warn("warn");
logger.error("error");
}
}
测试结果
初次运行,很遗憾,出问题了。
为什么呢?这是因为log4j 环境的配置通常在 应用程序初始化。首选方法是通过读取 配置文件。所以要在classpath
下添加log4j.properties(xml)
文件。
增加log4j.properties
文件内容如下:
log4j.rootLogger=debug, stdout
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
# Pattern to output the caller's file name and line number.
log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n
再次运行:
日志正常输出。
绑定jul(java.util.logging)
这是JDK自带的日志框架,官方地址是:Java Logging Overview (oracle.com)
示例项目:slf4j-jul
依赖说明
只需要引入依赖slf4j-jdk14
即可,会将其依赖的slf4j-api
自动下载。
<?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>
<groupId>com.itlab1024.log</groupId>
<artifactId>sfl4j-jul</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>2.0.6</version>
</dependency>
</dependencies>
</project>
依赖截图如下:
测试类
package com.itlab1024.log;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class com.itlab1024.log.Main {
public static final Logger logger = LoggerFactory.getLogger(com.itlab1024.log.Main.class);
public static void main(String[] args) {
logger.debug("debug");
logger.info("info");
logger.warn("warn");
logger.error("error");
}
}
运行结果
配置文件
juc的配置文件名称是logging.properties
。
官方提供了默认的文件配置。在JDK目录下的conf
文件夹下能够找到。
############################################################
# Default Logging Configuration File
#
# You can use a different file by specifying a filename
# with the java.util.logging.config.file system property.
# For example, java -Djava.util.logging.config.file=myfile
############################################################
############################################################
# Global properties
############################################################
# "handlers" specifies a comma-separated list of log Handler
# classes. These handlers will be installed during VM startup.
# Note that these classes must be on the system classpath.
# By default we only configure a ConsoleHandler, which will only
# show messages at the INFO and above levels.
handlers= java.util.logging.ConsoleHandler
# To also add the FileHandler, use the following line instead.
#handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler
# Default global logging level.
# This specifies which kinds of events are logged across
# all loggers. For any given facility this global level
# can be overridden by a facility-specific level
# Note that the ConsoleHandler also has a separate level
# setting to limit messages printed to the console.
.level= INFO
############################################################
# Handler specific properties.
# Describes specific configuration info for Handlers.
############################################################
# default file output is in user's home directory.
java.util.logging.FileHandler.pattern = %h/java%u.log
java.util.logging.FileHandler.limit = 50000
java.util.logging.FileHandler.count = 1
# Default number of locks FileHandler can obtain synchronously.
# This specifies maximum number of attempts to obtain lock file by FileHandler
# implemented by incrementing the unique field %u as per FileHandler API documentation.
java.util.logging.FileHandler.maxLocks = 100
java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
# Limit the messages that are printed on the console to INFO and above.
java.util.logging.ConsoleHandler.level = INFO
java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
# Example to customize the SimpleFormatter output format
# to print one-line log message like this:
# <level>: <log message> [<date/time>]
#
# java.util.logging.SimpleFormatter.format=%4$s: %5$s [%1$tc]%n
############################################################
# Facility-specific properties.
# Provides extra control for each logger.
############################################################
# For example, set the com.xyz.foo logger to only log SEVERE
# messages:
# com.xyz.foo.level = SEVERE
绑定slf4j-simple
示例项目:slf4j-simple
依赖说明
只要引入sfl4j-simple
即可,会自动下载slf4j-api
依赖
<?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>
<groupId>com.itlab1024</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.6</version>
**自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。**
**深知大多数Python工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则几千的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!**
**因此收集整理了一份《2024年Python开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。**
![img](https://img-blog.csdnimg.cn/img_convert/1cbf0f57cb3ac2826bd85d1f8507cc1a.png)
![img](https://img-blog.csdnimg.cn/img_convert/83c6b07cf8efda9557c82f0937bdfea7.png)
![img](https://img-blog.csdnimg.cn/img_convert/018ad8502a342807800ab16bea48bb08.png)
![img](https://img-blog.csdnimg.cn/img_convert/87bcae46a8423a7fb7656e157f52e7a0.png)
![img](https://img-blog.csdnimg.cn/img_convert/6c361282296f86381401c05e862fe4e9.png)
![img](https://img-blog.csdnimg.cn/img_convert/9f49b566129f47b8a67243c1008edf79.png)
**既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上前端开发知识点,真正体系化!**
**由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新**
**如果你觉得这些内容对你有帮助,可以扫码获取!!!(备注Python)**
转存中...(img-wBn3zggE-1712875221216)]
[外链图片转存中...(img-SyOpGLi5-1712875221217)]
[外链图片转存中...(img-tpq0ipew-1712875221217)]
[外链图片转存中...(img-FOLy4PBW-1712875221217)]
![img](https://img-blog.csdnimg.cn/img_convert/6c361282296f86381401c05e862fe4e9.png)
![img](https://img-blog.csdnimg.cn/img_convert/9f49b566129f47b8a67243c1008edf79.png)
**既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上前端开发知识点,真正体系化!**
**由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新**
**如果你觉得这些内容对你有帮助,可以扫码获取!!!(备注Python)**
<img src="https://img-community.csdnimg.cn/images/fd6ebf0d450a4dbea7428752dc7ffd34.jpg" alt="img" style="zoom:50%;" />