我的application.properties中有一些行,例如
logging.level.com.website.project.mapper=INFO
我想看看该值实际用于了解所有内容的地方。 IntelliJ可以将我带到使用它的地方吗?还是程序员必须自己了解所有属性?
答案 0 :(得分:1)
Spring Boot允许您在属性中定义日志级别。因此logging.level.com.website.project.mapper=INFO
等效于以下Logback配置:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml"/>
<logger name="com.website.project.mapper" level="INFO"/>
</configuration>
IntelliJ将为您提供logging.level.
之后的软件包名称的完整信息。
因此,它在内部使用,您必须查看Spring Boot代码以找到其使用位置。查看文档以更好地了解其工作原理:https://docs.spring.io/spring-boot/docs/current/reference/html/howto-logging.html。
答案 1 :(得分:0)