Spring - 不允许在元素“构造函数-arg”中显示属性“name”

2022-09-04 01:23:25

我在我的程序中使用hsqldb作为db。我想在弹簧上注入构造函数值。

这是我的豆子:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
    http://www.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="ConnectionManager" class="at.tuwien.group2.vpm.persistence.ConnectionManager"
        scope="singleton">
        <constructor-arg name="url" value="jdbc:hsqldb:file:vpmDatabasetest" />
        <constructor-arg name="user" value="sa" />
        <constructor-arg name="password" value="" />
    </bean>

我的构造函数看起来像这样:

public ConnectionManager(String url, String user, String password) {
    if(url == null || user == null || password == null) {
        throw new NullPointerException("Paramaeter cannot be null!");
    }
    this.url = url;
    this.user = user;
    this.password = password;
}

但是,当我想执行代码时,我得到:

不允许属性“name”出现在元素“构造函数-arg”中

不允许属性“name”出现在元素“构造函数-arg”中

我应该使用什么来代替?


答案 1

我猜你正在使用Sping 2.x。使用 index 属性显式指定构造函数参数的索引:

   <bean id="ConnectionManager" ...>
        <constructor-arg index="0" value="jdbc:hsqldb:file:vpmDatabasetest" />
        <constructor-arg index="1" value="sa" />
        <constructor-arg index="2" value="" />
    </bean>

此外,从Spring 3.0开始,您还可以使用构造函数参数名称来消除歧义。


答案 2

我在使用Spring 3.1.2库时遇到了同样的问题。我的错误是我使用了旧的架构位置。当我从

xsi:schemaLocation="http://www.springframework.org/schema/beans 
                    http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
                    http://www.springframework.org/schema/aop 
                    http://www.springframework.org/schema/aop/spring-aop-2.0.xsd"

 xsi:schemaLocation="http://www.springframework.org/schema/beans 
                     http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
                     http://www.springframework.org/schema/aop 
                     http://www.springframework.org/schema/aop/spring-aop-3.1.xsd"

使用命名而不是索引构造函数参数工作正常。


推荐