在 Spring 框架中创建名称在类路径资源 [application-context.xml] 中定义的 bean 时出错

Posted

技术标签:

【中文标题】在 Spring 框架中创建名称在类路径资源 [application-context.xml] 中定义的 bean 时出错【英文标题】:Error creating bean with name defined in class path resource [application-context.xml] in spring framework 【发布时间】:2014-08-10 07:15:24 【问题描述】:
<bean id="MyDataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
        <property name="url" value="$url"/>
        <property name="username" value="$username"/>
        <property name="password" value="$password"/>
    </bean>

    <bean id="template" class="org.springframework.jdbc.core.JdbcTemplate">
        <constructor-arg value="MyDataSource"/>
    </bean>

在类路径中定义名称为“模板”的 bean 创建错误 资源 [application-context.xml]:无法解析匹配 构造函数(提示:为简单指定索引/类型/名称参数 避免类型歧义的参数)

我不确定我在这里做错了什么才能得到上述错误?使用正确的变量名在属性文件中正确定义所有内容。有什么要检查的?

【问题讨论】:

【参考方案1】:

改变

<bean id="template" class="org.springframework.jdbc.core.JdbcTemplate">
    <constructor-arg value="MyDataSource"/>
</bean>

<bean id="template" class="org.springframework.jdbc.core.JdbcTemplate">
    <constructor-arg ref="MyDataSource"/>
</bean>

因为你不想注入 String 值你想注入引用的 bean

【讨论】:

以上是关于在 Spring 框架中创建名称在类路径资源 [application-context.xml] 中定义的 bean 时出错的主要内容,如果未能解决你的问题,请参考以下文章

在类路径资源 [jpaContext.xml] 中定义名称为“entityManagerFactory”的 bean 创建错误

Spring:创建在类路径资源中定义的名称为“entityManagerFactory”的bean时出错

在类路径资源中定义名称为“entityManagerFactory”的 bean 创建错误

在类路径资源中定义名称为“entityManagerFactory”的 bean 创建错误

在类路径资源中定义名称为“entityManagerFactory”的 bean 创建错误:调用 init 方法失败

弹簧靴 |在类路径资源中定义名称为“entityManagerFactory”的 bean 创建错误