Spring配置文件中bean的property属性中的name有错,红色
原因:
在实现类中没有写set方法
解决:
理解Spring配置文件中的property标签中的属性
1.ref引用一个已经存在的对象,value创建一个新的对象
2.value可以赋一些简单类型的值,ref可以引用其他的bean对象。
Spring配置文件中配置property标签的name和ref的区别
1
2
3
4
5
|
< bean id = "person" class = "service.Person" > <!-- 控制器调用setAxe方法,将容器中的axe bean作为传入的参数 --> <!--此处的name是决定Person类中的那个参数,ref是指bean配置文件中的bean名称--> < property name = "axe" ref = "axe" ></ property > </ bean > |
这里的name和ref虽然是同名的但是name是指Person类中的参数,Person类中有一个Axe类型名叫axe的对象,而ref是当前xml文件中叫做axe的这个bean,把它当作参数传进Person中。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/a1054512800/article/details/102632530