Spring p命名空间与c命名空间遇到的问题
程序员文章站
2022-03-20 23:00:52
在测试Spring p命名空间与c命名空间时,发现p命名空间没有问题,而c命名空间报 Attribute c:name is not allowed here 这样的异常代码块如下
在测试Spring p命名空间与c命名空间时,发现p命名空间没有问题,而c命名空间报 Attribute c:name is not allowed here 这样的异常
代码块如下
<?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:c="http://www.springframework.org/schema/c"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="user" class="com.rong.pojo.User" p:name="小明" p:password="123321"/>
<bean id="user1" class="com.rong.pojo.User" c:name="小明" c:password="123321" scope="prototype"/>
</beans>
User类
package com.rong.pojo;
/**
* @Author: RONG
* @Date: 2020/12/30 16:30
*/
public class User {
private String name;
private String password;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
@Override
public String toString() {
return "User{" +
"name='" + name + '\'' +
", password='" + password + '\'' +
'}';
}
}
翻看了资料发现 c命名空间运用要有对应的构造器才能使用
于是加上带name 与 password参数的构造器
public User(String name, String password) {
this.name = name;
this.password = password;
}
发现加上两个参数的构造器之后,c命名空间没问题了,p命名空间又报红:
No matching constructor found in class ‘User’
根据报错得知是因为没有对应的构造器造成的
于是又加上了默认的无参构造器
public User() {
}
所以Spring5中p命名空间需要类中有无参构造才能使用,c命名空间的使用需要有对应的含参构造器。
本文地址:https://blog.csdn.net/weixin_45490890/article/details/112260288
上一篇: application
下一篇: 达梦数据库实例、服务的创建和删除