gpt4 book ai didi

java - 导入jar时出现logback问题

转载 作者:行者123 更新时间:2023-12-01 09:32:33 46 4
gpt4 key购买 nike

我将第三方库导入到我的 Java/Spring 项目中(只是导入,没有使用库中的任何内容),当我运行应用程序时,我得到:

ERROR in ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP@1aea858e - Missing integer token, that is %i, in FileNamePattern [jboss.server.log.dir_IS_UNDEFINED/bak-library-%d{yyyy-MM}.log.zip]
ERROR in ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP@1aea858e - See also http://logback.qos.ch/codes.html#sat_missing_integer_token
at org.springframework.boot.logging.logback.LogbackLoggingSystem.loadConfiguration(LogbackLoggingSystem.java:152)
at org.springframework.boot.logging.logback.LogbackLoggingSystem.reinitialize(LogbackLoggingSystem.java:195)
at org.springframework.boot.logging.AbstractLoggingSystem.initializeWithConventions(AbstractLoggingSystem.java:65)
at org.springframework.boot.logging.AbstractLoggingSystem.initialize(AbstractLoggingSystem.java:50)

我想知道 - 这是第三方库本身的问题还是我可以在我的项目中添加一些配置来解决这个问题(基本上该库假设客户端将提供此类配置,因此如果没有)?

最佳答案

按照您找到的异常中的链接进行操作

Missing integer token, that is %i, in FileNamePattern [...].

The %i conversion token is mandatory for size and time based archiving. In case the %i token is missing, SizeAndTimeBasedFNATP attached to RollingFileAppender will detect the omission and will not start.

当您使用 RollingFileAppender 时,请点击上面的链接 size and time based archiving

更改您的模式(例如如下所示)应该可以解决问题。

jboss.server.log.dir_IS_UNDEFINED/bak-library-%d{yyyy-MM}.%i.log.zip

关于java - 导入jar时出现logback问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39289104/

46 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com