Skip to content
Snippets Groups Projects
Commit 6c657214 authored by srosse's avatar srosse
Browse files

no-jira: index jms queue for JBossAS

parent 75133f3f
No related branches found
No related tags found
No related merge requests found
...@@ -11,4 +11,11 @@ ...@@ -11,4 +11,11 @@
<bean id="searchQueue" class="org.springframework.jndi.JndiObjectFactoryBean" lazy-init="true"> <bean id="searchQueue" class="org.springframework.jndi.JndiObjectFactoryBean" lazy-init="true">
<property name="jndiName"><value>${search.broker.jndi}</value></property> <property name="jndiName"><value>${search.broker.jndi}</value></property>
</bean> </bean>
<bean id="indexConnectionFactory" class="org.springframework.jndi.JndiObjectFactoryBean" lazy-init="true">
<property name="jndiName"><value>${jms.broker.jndi}</value></property>
</bean>
<bean id="indexQueue" class="org.springframework.jndi.JndiObjectFactoryBean" lazy-init="true">
<property name="jndiName"><value>${index.broker.jndi}</value></property>
</bean>
</beans> </beans>
...@@ -649,6 +649,7 @@ codepoint.jms.broker.url=vm://embedded?broker.persistent=false ...@@ -649,6 +649,7 @@ codepoint.jms.broker.url=vm://embedded?broker.persistent=false
jms.broker.jndi=OpenOLATConnectionFactory jms.broker.jndi=OpenOLATConnectionFactory
sysbus.broker.jndi=topic/sysbus sysbus.broker.jndi=topic/sysbus
search.broker.jndi=queue/searchQueue search.broker.jndi=queue/searchQueue
index.broker.jndi=queue/indexQueue
# enable/disable codepoint/breakpoint framework # enable/disable codepoint/breakpoint framework
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment