]> git.argeo.org Git - gpl/argeo-slc.git/blob - modules/server/org.argeo.slc.webapp/WEB-INF/applicationContext.xml
Exclude some Argeo customers
[gpl/argeo-slc.git] / modules / server / org.argeo.slc.webapp / WEB-INF / applicationContext.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
4 xmlns:tx="http://www.springframework.org/schema/tx"
5 xsi:schemaLocation="
6 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
7 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
8 http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
9
10 <!--
11 <import resource="classpath:/org/argeo/slc/server/spring/jmx.xml" />
12 -->
13
14 <!--
15 security.xml has to be before osgi.xml, otherwise namespace parsing
16 fails
17 -->
18 <!-- <import resource="security.xml" /> -->
19 <import resource="osgi.xml" />
20
21 <!--
22 Hibernate instrumentation <bean id="osivInterceptor"
23 class="org.springframework.orm.hibernate3.support.OpenSessionInViewInterceptor">
24 <property name="sessionFactory" ref="sessionFactory" /> </bean>
25 -->
26
27
28 <!-- Properties -->
29 <bean
30 class="org.springframework.web.context.support.ServletContextPropertyPlaceholderConfigurer"
31 lazy-init="false">
32 <property name="contextOverride" value="true" />
33 </bean>
34
35 <!--
36 Web Services transactions <aop:config> <aop:pointcut id="epMethods"
37 expression="execution(*
38 org.springframework.web.servlet.mvc.Controller.handleRequest(..))" />
39 <aop:advisor advice-ref="epAdvice" pointcut-ref="epMethods" />
40 </aop:config> <tx:advice id="epAdvice"
41 transaction-manager="hibernateTransactionManager"> <tx:attributes>
42 <tx:method name="*" propagation="REQUIRED" /> </tx:attributes>
43 </tx:advice>
44 -->
45
46 </beans>