问题 :idea 本地启动没有问题...但是打成jar包.本地启动时.出现了异常
Logging system failed to initialize using configuration from 'src/main/resources/logback-wshoto.xml'
原因: log的配置写成全路径了.
logging:
config: src/main/resources/logback-wshoto.xml

解决: log配置修改成
logging:
config: classpath:logback-wshoto.xml

验证:重新打包,java -jar ** 启动 验证,启动成功
