在Spring框架中bean配置文件中constructor-arg标签中没有name元素?

bean配置文件出现错误的依赖:

<beans

<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">

将以上依赖改成:

<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标签下的constructor-arg标签中添加name属性了。

上一篇:关于命名空间的using声明


下一篇:C#正则表达式提取HTML中IMG标签中的SRC地址