Skip to content

Commit c6d935b

Browse files
committed
Polish "Fix JMS integration tests"
See gh-1549
1 parent ffd3883 commit c6d935b

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

spring-ws-support/src/test/resources/org/springframework/ws/transport/jms/jms-sender-applicationContext.xml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
55

6-
<bean id="targetConnectionFactory"
7-
class="org.apache.activemq.ActiveMQConnectionFactory">
8-
<property name="brokerURL" value="vm://localhost?broker.persistent=false"/>
9-
</bean>
10-
116
<bean id="connectionFactory"
127
class="org.springframework.jms.connection.SingleConnectionFactory">
13-
<property name="targetConnectionFactory" ref="targetConnectionFactory"/>
8+
<property name="targetConnectionFactory">
9+
<bean class="org.apache.activemq.ActiveMQConnectionFactory">
10+
<property name="brokerURL" value="vm://localhost?broker.persistent=false"/>
11+
</bean>
12+
</property>
1413
</bean>
1514

1615
<bean id="requestQueue" class="org.apache.activemq.command.ActiveMQQueue">

0 commit comments

Comments
 (0)