spring|spring bean.xml文件p标签使用报错的解决

目录

  • bean.xml文件p标签使用报错
  • spring 的xml配置使用p标签简化
    • 1、常见配置
    • 可以配置如下

bean.xml文件p标签使用报错
The prefix "p" for attribute "p:某属性" associated with an element type "bean" is not bound.
某元素属性未捆绑,直接点击添加p的命名空间,或者手动在里面添加一行约束
xmlns:p="http://www.springframework.org/schema/p"

【spring|spring bean.xml文件p标签使用报错的解决】
spring 的xml配置使用p标签简化
1、常见配置
比如配置数据源 读取properties


可以配置如下
< bean id="dataSource"class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"p:driverClassName="org.gjt.mm.MySQL.Driver"p:url="jdbc:mysql://127.0.0.1:3306/easyjf-bbs" p:username="root" p:password="mysql" />< /beans>

p表示对该bean里面的属性进行注入,格式为p:属性名=注入的对象
效果与在bean里面使用标签一样
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

    推荐阅读