summaryrefslogtreecommitdiffstats
path: root/reference/logging-demo/src/main/webapp/WEB-INF/spring.xml
diff options
context:
space:
mode:
authorMichael O'Brien <frank.obrien@amdocs.com>2018-01-14 19:03:01 -0500
committerMichael O'Brien <frank.obrien@amdocs.com>2018-01-14 19:04:02 -0500
commit84c036b3bc6d8313b86317d752b92c417bd89d7f (patch)
treeb47703ce2be47c14d3fd91598412f00785beb0cc /reference/logging-demo/src/main/webapp/WEB-INF/spring.xml
parentf8b1ef78741ae64adf79f677296a5c33e7d07ae4 (diff)
initial logging project structure
Issue-ID: LOG-120 Change-Id: If96346fa4f35b81ec01aacc087f96875011e5f82 Signed-off-by: Michael O'Brien <frank.obrien@amdocs.com>
Diffstat (limited to 'reference/logging-demo/src/main/webapp/WEB-INF/spring.xml')
-rw-r--r--reference/logging-demo/src/main/webapp/WEB-INF/spring.xml40
1 files changed, 40 insertions, 0 deletions
diff --git a/reference/logging-demo/src/main/webapp/WEB-INF/spring.xml b/reference/logging-demo/src/main/webapp/WEB-INF/spring.xml
new file mode 100644
index 0000000..fd3d6ab
--- /dev/null
+++ b/reference/logging-demo/src/main/webapp/WEB-INF/spring.xml
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<beans xmlns="http://www.springframework.org/schema/beans"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:util="http://www.springframework.org/schema/util"
+ xmlns:context="http://www.springframework.org/schema/context"
+ xmlns:tx="http://www.springframework.org/schema/tx"
+ xmlns:p="http://www.springframework.org/schema/p"
+ xmlns:jpa="http://www.springframework.org/schema/data/jpa"
+ xmlns:aop="http://www.springframework.org/schema/aop"
+ xmlns:mvc="http://www.springframework.org/schema/mvc"
+ xsi:schemaLocation="http://www.springframework.org/schema/beans
+ http://www.springframework.org/schema/beans/spring-beans.xsd
+ http://www.springframework.org/schema/util
+ http://www.springframework.org/schema/util/spring-util.xsd
+ http://www.springframework.org/schema/context
+ http://www.springframework.org/schema/context/spring-context.xsd
+ http://www.springframework.org/schema/tx
+ http://www.springframework.org/schema/tx/spring-tx.xsd
+ http://www.springframework.org/schema/data/jpa
+ http://www.springframework.org/schema/data/jpa/spring-jpa.xsd
+ http://www.springframework.org/schema/mvc
+ http://www.springframework.org/schema/mvc/spring-mvc.xsd
+ http://www.springframework.org/schema/aop
+ http://www.springframework.org/schema/aop/spring-aop.xsd"
+ default-lazy-init="true">
+
+ <context:annotation-config />
+ <context:spring-configured />
+ <!-- rest annotations -->
+ <mvc:annotation-driven />
+ <!-- read in DAO's via Repository annotation -->
+ <context:component-scan base-package="org.onap.logging.*" use-default-filters="false" >
+ <context:include-filter type="annotation" expression="org.springframework.stereotype.Repository" />
+ </context:component-scan>
+ <!-- Rest controllers -->
+ <context:component-scan base-package="org.onap.logging" />
+</beans>
+
+
+