美文网首页
IDEA 运行main方法报错:Exception in thr

IDEA 运行main方法报错:Exception in thr

作者: 951丶 | 来源:发表于2020-06-20 10:43 被阅读0次

在IDEA中直接运行main方法时遇到
Error: A JNI error has occurred, please check your installation and try again
Exception in thread "main" java.lang.NoClassDefFoundError: javax/servlet/http/HttpServletRequest
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Class.java:2701)
at java.lang.Class.privateGetMethodRecursive(Class.java:3048)
at java.lang.Class.getMethod0(Class.java:3018)
at java.lang.Class.getMethod(Class.java:1784)
at sun.launcher.LauncherHelper.validateMainClass(LauncherHelper.java:544)
at sun.launcher.LauncherHelper.checkAndLoadMain(LauncherHelper.java:526)
Caused by: java.lang.ClassNotFoundException: javax.servlet.http.HttpServletRequest
at java.net.URLClassLoader.findClass(URLClassLoader.java:382)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:349)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
... 7 more

解决方法:
点击


image.png

将tomcat依赖scope调整为Compile即可


image.png

相关文章

网友评论

      本文标题:IDEA 运行main方法报错:Exception in thr

      本文链接:https://www.haomeiwen.com/subject/knswxktx.html