aboutsummaryrefslogtreecommitdiffstats
path: root/aai-resources/src/main/ajsc/ajsc-aai_v1/ajsc-aai/v1/conf/serviceBeans.xml
blob: 9d9d8f0cb3db116bd4de78080925cd4dc974ca53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:cxf="http://cxf.apache.org/core"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:task="http://www.springframework.org/schema/task" xmlns:jms="http://www.springframework.org/schema/jms"
	xsi:schemaLocation="
		   http://cxf.apache.org/core
		   http://cxf.apache.org/schemas/core.xsd
	       http://www.springframework.org/schema/beans
	       http://www.springframework.org/schema/beans/spring-beans.xsd
	       http://www.springframework.org/schema/context
     	   http://www.springframework.org/schema/context/spring-context-2.5.xsd
     	   http://www.springframework.org/schema/task 
     	   http://www.springframework.org/schema/task/spring-task-3.0.xsd
     	   http://www.springframework.org/schema/jms
		   http://www.springframework.org/schema/jms/spring-jms-4.1.xsd">

	<!-- Your bean definitions goes here -->
	<!-- <bean id="performanceLog" name="performanceLog" class="com.att.ajsc.csi.logging.PerformanceTracking" 
		/> -->
	<!-- <bean id="processRestletHeaders" name="processRestletHeaders" class="ajsc.restlet.ProcessRestletHeaders" 
		/> -->
	<!--<bean id="servicePropsBean" name="servicePropsBean"-->
		<!--class="org.openecomp.aai.ajsc_aai.util.ServicePropertiesMapBean" />-->
	<bean id="jsonProvider" class="org.openecomp.aai.restcore.CustomJacksonJaxBJsonProvider" />

	<bean id="inInterceptor" class="org.openecomp.aai.interceptors.AAILogJAXRSInInterceptor" />
	<bean id="outInterceptor" class="org.openecomp.aai.interceptors.AAILogJAXRSOutInterceptor" />
	<!--<bean id="readInInterceptor" class="org.openecomp.aai.interceptors.AAICXFReadPhaseInterceptor" />-->
	<cxf:bus bus="cxfBus">
		<cxf:inInterceptors>
			<ref bean="inInterceptor" />
			<!--<ref bean="readInInterceptor" />-->
		</cxf:inInterceptors>
		<cxf:outInterceptors>
			<ref bean="outInterceptor" />
		</cxf:outInterceptors>
	</cxf:bus>
	<context:component-scan base-package="org.openecomp.aai.tasks" />
	<context:component-scan base-package="org.openecomp.aai.config" />

	<task:scheduler id="taskScheduler" pool-size="10" />
	<task:executor id="taskExecutor" pool-size="10"
		queue-capacity="5" />
	<task:annotation-driven executor="taskExecutor"
		scheduler="taskScheduler" />

	<bean id="jmsProperties"
		class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"
		name="jmsProperties">
		<property name="order" value="99999" />
		<property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE" />
		<property name="ignoreUnresolvablePlaceholders" value="true" />
		<property name="properties">
			<value>

				<!-- JMS -->
				JMS.BROKER.URL=tcp://localhost:61447
				JMS.QUEUE.NAME=IN_QUEUE

			</value>
		</property>
	</bean>

	<!-- ActiveMQ connection factory -->
	<bean id="amqConnectionFactory" class="org.apache.activemq.ActiveMQConnectionFactory">
		<constructor-arg index="0" value="${JMS.BROKER.URL}" />
	</bean>

	<!-- ConnectionFactory Definition -->
	<bean id="connectionFactory"
		class="org.springframework.jms.connection.CachingConnectionFactory">
		<constructor-arg ref="amqConnectionFactory" />
	</bean>

	<!-- Destination Queue -->
	<bean id="destinationQueue" class="org.apache.activemq.command.ActiveMQQueue">
		<constructor-arg index="0" value="${JMS.QUEUE.NAME}" />
	</bean>

	<!-- JmsTemplate Definition -->
	<bean id="jmsTemplate" class="org.springframework.jms.core.JmsTemplate">
		<property name="connectionFactory" ref="connectionFactory" />
		<property name="defaultDestination" ref="destinationQueue" />
	</bean>

	<!-- Message Producer -->
	<bean id="messageProducer" class="org.openecomp.aai.dmaap.AAIDmaapEventJMSProducer" />

	<!-- Message Consumer from Default Destination -->
	<bean id="messageDefaultConsumer" class="org.openecomp.aai.dmaap.AAIDmaapEventJMSConsumer" />

	<!-- Message Consumer Container for Default Destination -->
	<bean
		class="org.springframework.jms.listener.DefaultMessageListenerContainer">
		<property name="connectionFactory" ref="connectionFactory" />
		<property name="destinationName" value="${JMS.QUEUE.NAME}" />
		<property name="messageListener" ref="messageDefaultConsumer" />
	</bean>
	

</beans>