我正在进行第一次尝试进入春季,并且试图在日食上运行时出现以下错误:
org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'model' must be of type [com.myCompany.project.Model], but was actually of type [com.myCompany.project.Model]
导致异常的代码:
import com.myCompany.project.Model;
// some code
public Model getModel() {
ClassPathXmlApplicationContext applicationContext =
new ClassPathXmlApplicationContext("client-context.xml");
return applicationContext.getBean("model", Model.class);
}
Spring 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:context="http://www.springframework.org/schema/context"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<context:annotation-config />
<bean id="model" class="com.myCompany.project.Model" />
</beans>
client-context.xml位于project / resources中,代码位于project / src / main /
中我认为这是一个类路径问题,但我不知道如何解决它。
答案 0 :(得分:1)
Java和Spring区分大小写。这个:
<bean id="model" class="com.myCompany.project.model" />
与此不同:
<bean id="model" class="com.myCompany.project.Model" />
我会考虑一些更好的名字。那些不是很有见地。
我不喜欢你这样做的方式。您不应该有一个必须以这种方式访问应用程序上下文的bean。你必须发布更多代码才能确定,但是你应该将模型bean连接到需要它的对象上,而不是做你正在做的事情。
执行您提出的建议的唯一原因是,与app上下文交互的bean是使用new而不是Spring bean工厂创建的。由于您刚刚开始使用Spring,我建议让Spring处理所有依赖项。