java.lang.ClassNotFoundException: ch.qos.logback.classic.spi.ThrowableProxy?

前端 未结 8 423
野趣味
野趣味 2021-01-01 14:00

while starting my weblogic(having my app war file containing logback-classic-1.0.1.jar),i am getting below exception.Any suggestion ?



        
8条回答
  •  执笔经年
    2021-01-01 14:38

    This type of exception occurs when your classpath does not contain this class.
    If the jar's class is in your classpath, you pay attention to what classpath application you using at runtime. Indeed, often, classpath can be overwritten during runtime, or simply you can use a different one (for example, in a startup script).

提交回复
热议问题