我是Spring Framework的新手。我按照第4章“专业人士”一书中的说明进行了操作。在本书作者通过xml配置框架,但我想用Java配置它。在运行时我得到 ClassNotFoundException
Error: A JNI error has occurred, please check your installation and try again
Exception in thread "main" java.lang.NoClassDefFoundError: org/springframework/context/ApplicationContext
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: org.springframework.context.ApplicationContext
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
... 7 more
我已经发布了我的代码 github。 我做错了什么?
答案 0 :(得分:2)
在这里工作正常,我运行时会打印Hello World!
你是如何尝试的呢?
我猜你试过java -jar spring-framework-example.jar
这当然不起作用,因为你错过了类路径中的库。
如果你交换
jar {
manifest {
attributes 'Main-Class': 'com.bakhtiyor.sample.Application'
}
}
与
apply plugin: 'application'
mainClassName = 'com.bakhtiyor.sample.Application'
然后使用gradle run
,应用程序运行正常。
PS:你应该总是使用Gradle Wrapper,即使在最小的项目中也是如此。然后,其他人更容易构建您的项目,因为不需要安装任何东西来构建,并且构建始终使用构建所针对的Gradle版本运行。