对Spring IOC容器相关整理(二)

1、命名空间 :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://" > <description>rabbitmq 连接服务配置</description> <!--步骤1、配置链接工厂--> <bean class="org.springframework.amqp.rabbit.connection.CachingConnectionFactory"> <property value="${mq.address}"/> <property value="${mq.port}"/> <property value="${mq.pwd}"/> <property value="${mq.user}"/> <property value="true"/> <property value="true"/> <property value="${mq.vhost}"/> <property value="50"/> </bean> //....... </beans>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zywpsy.html