blob: b34ad69ffbf7facb708bf463513e8dab92244a14 [file] [log] [blame]
Michael Lando451a3402017-02-19 10:28:42 +02001<?xml version="1.0" encoding="UTF-8"?>
2<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
3 xmlns:aop="http://www.springframework.org/schema/aop" xmlns:util="http://www.springframework.org/schema/util"
4 xsi:schemaLocation="
5 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
6 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
7 http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
8 http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd">
9
10 <context:annotation-config />
11 <aop:aspectj-autoproxy proxy-target-class="true" />
12
13 <context:component-scan
Michael Landoa5445102018-03-04 14:53:33 +020014 base-package= "org.openecomp.sdc.be.components.health,
15 org.openecomp.sdc.be.servlets,
16 org.openecomp.sdc.be.externalapi.servlet,
17 org.openecomp.sdc.be.components.scheduledtasks,
18 org.openecomp.sdc.be.model.jsontitan.utils">
19 </context:component-scan>
Michael Landoed64b5e2017-06-09 03:19:04 +030020
21 <bean class="org.openecomp.sdc.be.dao.config.DAOSpringConfig"/>
Michael Landoa5445102018-03-04 14:53:33 +020022 <bean class="org.openecomp.sdc.be.config.CatalogModelSpringConfig"/>
23 <bean class="org.openecomp.sdc.be.components.distribution.engine.config.DistributionEngineSpringConfig"/>
24 <bean class="org.openecomp.sdc.config.CatalogBESpringConfig"/>
25
Michael Landoed64b5e2017-06-09 03:19:04 +030026
Michael Lando451a3402017-02-19 10:28:42 +020027 <util:properties id="elasticsearchConfig" location="file:${config.home}/elasticsearch.yml" />
28
29</beans>