logging: level: root: INFO com.rzon.ospm.mapper: debug
时间: 2023-08-08 09:10:17 浏览: 178
这段配置意味着:
- 根日志级别设置为INFO,意味着所有包的日志输出级别都不低于INFO级别;
- com.rzon.ospm.mapper包的日志输出级别设置为DEBUG,意味着该包下的所有类的日志输出级别都不低于DEBUG级别。
具体来说,如果一个类的日志级别设置为DEBUG,那么该类的所有DEBUG级别的日志信息都会被输出。如果一个类的日志级别设置为INFO,那么该类的所有INFO级别及以上的日志信息都会被输出。如果一个类的日志级别设置为WARN,那么该类的所有WARN级别及以上的日志信息都会被输出。以此类推。如果一个类的日志级别设置为ERROR,那么该类的所有ERROR级别及以上的日志信息都会被输出。
相关问题
spring.datasource.url=jdbc:mysql://localhost:3306/sell?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8 !--spring.datasource.url=jdbc:mysql://localhost:3306/javaee_2020_1 spring.datasource.username=root spring.datasource.password=root spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver !-spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver server.port=8080 logging.level..com.dao=debug mybatis.mapper-locations=classpath:mapping/*.xml !--entityÊÇ°üĿ¼¡£ mybatis.type-aliases-package=com.lizhuotian.inmbakery.entity logging.level.com.mall.mapper=debug
这是一个 Spring Boot 应用程序的配置文件,其中包含了应用程序连接 MySQL 数据库的相关配置,以及应用程序的端口号和日志级别等信息。其中,'spring.datasource.url' 是应用程序连接 MySQL 数据库的 URL,'spring.datasource.username' 和 'spring.datasource.password' 是连接 MySQL 数据库的用户名和密码,'spring.datasource.driver-class-name' 是 MySQL 数据库的驱动程序类名。'server.port' 是应用程序的端口号,'logging.level' 是应用程序的日志级别。'mybatis.mapper-locations' 是 MyBatis 的 XML 映射文件路径,'mybatis.type-aliases-package' 是实体类的包路径。
spring.datasource.url=jdbc:mysql://localhost:3306/debook?characterEncoding=utf-8 spring.datasource.username=root spring.datasource.password=root spring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.datasource.tomcat.initial-size=10 spring.datasource.tomcat.max-active=50 spring.datasource.tomcat.max-idle=30 spring.datasource.tomcat.min-idle=10 spring.freemarker.template-loader-path=classpath:/templates/ spring.freemarker.charset=utf-8 spring.freemarker.cache=false spring.freemarker.expose-request-attributes=true spring.freemarker.expose-session-attributes=true spring.freemarker.expose-spring-macro-helpers=true spring.freemarker.suffix=.ftl spring.jackson.date-format=yyyy-MM-dd spring.jackson.time-zone=GMT+8 mybatis.type-aliases-package=com.de.debook.entity mybatis.mapper-locations=classpath:mapper/*.xml debug=true logging.level.com.de.debook.mapper=debug
这是一个 Spring Boot 应用程序的配置文件,其中包含了一些关于数据库连接、Freemarker 模板引擎的配置以及 MyBatis 的配置。
- 数据库连接:指定了数据库的连接地址、用户名、密码、驱动等信息,使用的是 MySQL 数据库。
- Freemarker 模板引擎:指定了模板文件的路径、字符编码、是否缓存等信息。
- Jackson 序列化:指定了日期格式和时区。
- MyBatis 配置:指定了实体类的包路径和 mapper 文件的位置。
- 日志配置:指定了 com.de.debook.mapper 包下的日志级别为 debug 级别。
其中,debug=true 表示开启调试模式。
阅读全文