War deployment error related to classloading

前端 未结 2 1321
离开以前
离开以前 2021-01-23 10:21

when i am deploying my war file and run it it will give error like

org.springframework.instrument.classloading.tomcat.TomcatInstrumentableClassLoader

相关标签:
2条回答
  • 2021-01-23 11:10

    Crosscheck whether you have deployed all of your required jar files (Ex: springs.jar) in your project /WEB-INF/lib/ folder

    0 讨论(0)
  • 2021-01-23 11:11

    The error message clearly states:

    java.lang.ClassNotFoundException:
      org.springframework.instrument.classloading.tomcat.TomcatInstrumentableClassLoader
    

    Have you verified that the class exists within the webapp classpath?

    0 讨论(0)
提交回复
热议问题