这是我的代码。我有一些错误。任何人都可以帮我解决问题吗?我收到一些转换错误,例如将ClassPathResource
转换为Resource
,将资源对象r
转换为资源。
package firstspring;
import javax.annotation.Resource;
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 r =new ClassPathResource("applicationContext.xml");
BeanFactory bf=new XmlBeanFactory(r);
Student stud=(Student)bf.getBean("first");
stud.display();
}
}
这是我的XML文件;
<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://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="first" class="Student">
<property name="name" value="sneha"></property>
</bean>
</beans>
答案 0 :(得分:4)
您正在使用javax.annotation.Resource
和org.springframework.core.io.Resource
等资源,这会导致冲突。
您需要像这样使用它们
org.springframework.core.io.Resource r = new ClassPathResource("applicationContext.xml");
然后程序将执行。
答案 1 :(得分:0)
代替导入
javax.annotation.Resource
使用
org.springframework.core.io.Resource