我正在尝试学习Spring,并且正在关注本教程:
https://www.javatpoint.com/spring-tutorial。
这就是我所做的:
我已经创建了一个目录springtutorial
并将这两个文件放入其中:
Student.java
package com.javatpoint;
public class Student{
private String name;
public String getName(){
return name;
}
public void displayInfo(){
System.out.println("Hello:" + name);
}
}
Test.java
:
package com.javatpoint;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.xml.XmlBeanFactory;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.Resource;
public class Test {
public static void main(String[] args){
Resource resource = new ClassPathResource("applicationContext.xml");
BeanFactory factory = new XmlBeanFactory(resource);
Student student = (Student) factory.getBean("studentbean");
student.displayInfo();
}
}
此外,我还创建了一个XML文件 applicationContext.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="https://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<bean id="studentbean" class="com.javatpoint.Student">
<propertyname="name" value="Vimal Jaiswal"></property>
</bean>
</beans>
最后,我已经下载了这些Spring核心文件:https://www.javatpoint.com/src/sp/spcorejars.zip
我将.jar文件以外的所有内容都放在了同一文件夹中。 .jar文件放置在子文件夹中:
~/springtutorial$ ls
applicationContext.xml spcorejars Student.java Test.java
~/springtutorial$ ls spcorejars/
com.springsource.org.apache.commons.logging-1.1.1.jar org.springframework.beans-3.0.1.RELEASE-A.jar
com.springsource.org.apache.log4j-1.2.15.jar org.springframework.context-3.0.1.RELEASE-A.jar
jmxtools-1.2.1.jar org.springframework.core-3.0.1.RELEASE-A.jar
org.springframework.asm-3.0.1.RELEASE-A.jar org.springframework.expression-3.0.1.RELEASE-A.jar
编译 Student.java
可以正常工作:
~/springtutorial$ javac -d . Student.java
,经过修补后,我设法编译了 Test.java
(。jar文件在单独的子文件夹中):
~/springtutorial$ javac -cp ".:spcorejars/*" -d . Test.java
但是我无法运行测试文件:
~/springtutorial$ java com.javatpoint.Test
Error: Unable to initialize main class com.javatpoint.Test
Caused by: java.lang.NoClassDefFoundError: org/springframework/core/io/Resource
通过在线查看,在我看来我应该拥有所需的所有.jar文件。那么,该错误的原因可能是什么?
在您问:不,我不想使用Maven或Gradle进行此操作。这样做的目的是查看实际上的一切工作原理,而无需任何程序为您完成。
答案 0 :(得分:0)
尝试运行命令:
~/springtutorial$ java -cp ".:spcorejars/*" com.javatpoint.Test