You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@activemq.apache.org by "Dejan Bosanac (JIRA)" <ji...@apache.org> on 2009/07/10 13:13:34 UTC

[jira] Resolved: (AMQ-1804) ConnectionFactory classes should have XBean support

     [ https://issues.apache.org/activemq/browse/AMQ-1804?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dejan Bosanac resolved AMQ-1804.
--------------------------------

    Resolution: Fixed

Removed xbean mapping from org.apache.activemq.ActiveMQConectionFactory in SVN revision 792884

> ConnectionFactory classes should have XBean support
> ---------------------------------------------------
>
>                 Key: AMQ-1804
>                 URL: https://issues.apache.org/activemq/browse/AMQ-1804
>             Project: ActiveMQ
>          Issue Type: Improvement
>    Affects Versions: 4.1.2, 5.1.0
>            Reporter: Trevor Pounds
>            Assignee: Rob Davies
>            Priority: Minor
>             Fix For: 5.3.0
>
>         Attachments: r669289.diff
>
>
> It would be nice to have certain objects deriving from javax.jms.ConnectionFactory to provide XBean binding support.  This would really clean up xbean configurations utilizing ActiveMQ connection factories.
> {code:xml|title=current}
> <bean id="pooledFactory" class="org.apache.activemq.pool.PooledConnectionFactory" destroy-method="stop">
>    <property name="connectionFactory">
>       <bean class="org.apache.activemq.ActiveMQConnectionFactory">
>          <property name="brokerURL">
>             <value>tcp://localhost:61616</value>
>          </property>
>       </bean>
>    </property>
> </bean>
> {code}
> vs
> {code:xml|title=improved}
> <pooledConnectionFactory id="pooledFactory" destroy-method="stop" connectionFactory="#connectionFactory"/>
> <connectionFactory id="connectionFactory" brokerURL="tcp://localhost:61616"/>
> {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.