blob: 3491bd3c9e646b56a3e09b0199f00724d691a397 [file] [log] [blame]
Michael Hanlca740d72015-06-16 10:04:58 +02001<?xml version="1.0" encoding="UTF-8"?>
2<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
margaretha0e8f4e72018-04-05 14:11:52 +02003 xmlns:p="http://www.springframework.org/schema/p" xmlns:util="http://www.springframework.org/schema/util"
4 xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
5 xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context"
margaretha543f2002017-07-14 00:27:15 +02006 xmlns:cache="http://www.springframework.org/schema/cache"
7 xsi:schemaLocation="http://www.springframework.org/schema/beans
margaretha3da7cd32018-10-22 17:42:52 +02008 http://www.springframework.org/schema/beans/spring-beans.xsd
margaretha543f2002017-07-14 00:27:15 +02009 http://www.springframework.org/schema/tx
margaretha3da7cd32018-10-22 17:42:52 +020010 http://www.springframework.org/schema/tx/spring-tx.xsd
margaretha543f2002017-07-14 00:27:15 +020011 http://www.springframework.org/schema/aop
margaretha3da7cd32018-10-22 17:42:52 +020012 http://www.springframework.org/schema/aop/spring-aop.xsd
margaretha543f2002017-07-14 00:27:15 +020013 http://www.springframework.org/schema/context
margaretha3da7cd32018-10-22 17:42:52 +020014 http://www.springframework.org/schema/context/spring-context.xsd
margaretha543f2002017-07-14 00:27:15 +020015 http://www.springframework.org/schema/util
margaretha3da7cd32018-10-22 17:42:52 +020016 http://www.springframework.org/schema/util/spring-util.xsd">
margaretha543f2002017-07-14 00:27:15 +020017
18 <context:component-scan base-package="de.ids_mannheim.korap" />
19 <context:annotation-config />
20
21 <bean id="props"
22 class="org.springframework.beans.factory.config.PropertiesFactoryBean">
23 <property name="ignoreResourceNotFound" value="true" />
24 <property name="locations">
25 <array>
26 <value>classpath:kustvakt.conf</value>
27 <value>file:./kustvakt.conf</value>
28 </array>
29 </property>
30 </bean>
31
32 <bean id="placeholders"
33 class="org.springframework.context.support.PropertySourcesPlaceholderConfigurer">
34 <property name="ignoreResourceNotFound" value="true" />
35 <property name="locations">
36 <array>
margarethaaecee1b2018-02-20 14:44:21 +010037 <value>classpath:properties/jdbc.properties</value>
margarethaea68a0a2017-09-21 03:09:49 +020038 <value>file:./jdbc.properties</value>
margarethaaecee1b2018-02-20 14:44:21 +010039 <value>classpath:properties/mail.properties</value>
40 <value>file:./mail.properties</value>
margarethacc7feb62023-05-09 08:57:46 +020041 <value>classpath:properties/hibernate.properties</value>
margaretha0e8f4e72018-04-05 14:11:52 +020042
margarethaade7d4a2017-07-20 19:53:35 +020043 <value>classpath:kustvakt.conf</value>
margaretha14503cd2017-09-08 15:35:24 +020044 <value>file:./kustvakt.conf</value>
margaretha543f2002017-07-14 00:27:15 +020045 </array>
46 </property>
47 </bean>
48
margaretha7c21ec82023-08-21 09:55:58 +020049 <!-- <bean id='cacheManager' class='org.springframework.cache.ehcache.EhCacheCacheManager'
margaretha543f2002017-07-14 00:27:15 +020050 p:cacheManager-ref='ehcache' />
51
52 <bean id='ehcache'
53 class='org.springframework.cache.ehcache.EhCacheManagerFactoryBean'
54 p:configLocation='classpath:ehcache.xml' p:shared='true' />
margaretha7c21ec82023-08-21 09:55:58 +020055 -->
margaretha543f2002017-07-14 00:27:15 +020056 <!--class="org.apache.commons.dbcp2.BasicDataSource" -->
57 <!-- org.springframework.jdbc.datasource.SingleConnectionDataSource -->
58 <bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource"
59 lazy-init="true">
60 <property name="driverClassName" value="${jdbc.driverClassName}" />
61 <property name="url" value="${jdbc.url}" />
62 <property name="username" value="${jdbc.username}" />
63 <property name="password" value="${jdbc.password}" />
64 <!-- relevant for single connection datasource and sqlite -->
65 <!-- <property name="suppressClose"> <value>true</value> </property> -->
66 <!--<property name="initialSize" value="2"/> -->
67 <property name="maxTotal" value="4" />
68 <property name="maxIdle" value="2" />
69 <property name="minIdle" value="1" />
margaretha45211af2018-08-28 12:49:07 +020070 <property name="maxWaitMillis" value="-1" />
margaretha543f2002017-07-14 00:27:15 +020071 <!--<property name="poolPreparedStatements" value="true"/> -->
72 </bean>
margaretha45211af2018-08-28 12:49:07 +020073
74 <bean id="c3p0DataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"
75 destroy-method="close" lazy-init="true">
76 <property name="driverClass" value="${jdbc.driverClassName}" />
77 <property name="jdbcUrl" value="${jdbc.url}" />
78 <property name="user" value="${jdbc.username}" />
79 <property name="password" value="${jdbc.password}" />
80 <property name="maxPoolSize" value="4" />
81 <property name="minPoolSize" value="1" />
82 <property name="maxStatements" value="100" />
83 <!-- <property name="testConnectionOnCheckOut" value="true" /> -->
84 <property name="idleConnectionTestPeriod" value="60" />
85 <property name="testConnectionOnCheckin" value="true" />
86 </bean>
margaretha543f2002017-07-14 00:27:15 +020087
88 <bean id="sqliteDataSource"
89 class="org.springframework.jdbc.datasource.SingleConnectionDataSource"
90 lazy-init="true">
91 <property name="driverClassName" value="${jdbc.driverClassName}" />
92 <property name="url" value="${jdbc.url}" />
93 <property name="username" value="${jdbc.username}" />
94 <property name="password" value="${jdbc.password}" />
margarethae6c711b2018-02-06 21:55:04 +010095 <property name="connectionProperties">
margaretha0e8f4e72018-04-05 14:11:52 +020096 <props>
97 <prop key="date_string_format">yyyy-MM-dd HH:mm:ss</prop>
98 </props>
99 </property>
100
margaretha543f2002017-07-14 00:27:15 +0200101 <!-- relevant for single connection datasource and sqlite -->
102 <property name="suppressClose">
103 <value>true</value>
104 </property>
105 <!--<property name="initialSize" value="2"/> -->
106 <!--<property name="poolPreparedStatements" value="true"/> -->
107 </bean>
108
109 <!-- to configure database for sqlite, mysql, etc. migrations -->
margarethafcf8bd92021-01-14 10:55:53 +0100110 <bean id="flywayConfig" class="org.flywaydb.core.api.configuration.ClassicConfiguration">
margarethaf6d5a822017-10-19 19:51:20 +0200111 <property name="baselineOnMigrate" value="true" />
margarethaecbe72d2017-07-26 17:13:32 +0200112 <!-- <property name="validateOnMigrate" value="false" /> -->
113 <!-- <property name="cleanOnValidationError" value="true" /> -->
margarethafcf8bd92021-01-14 10:55:53 +0100114 <property name="locations" value="#{'${jdbc.schemaPath}'.split(',')}"/>
margaretha894a7d72017-11-08 19:24:20 +0100115 <!-- <property name="dataSource" ref="dataSource" /> -->
margaretha8514d782018-08-28 17:36:56 +0200116 <property name="dataSource" ref="sqliteDataSource" />
117 <!-- <property name="dataSource" ref="c3p0DataSource" /> -->
margarethad66a6832022-03-03 08:47:13 +0100118 <property name="outOfOrder" value="true" />
margaretha543f2002017-07-14 00:27:15 +0200119 </bean>
margarethafcf8bd92021-01-14 10:55:53 +0100120
121 <bean id="flyway" class="org.flywaydb.core.Flyway" init-method="migrate">
122 <constructor-arg ref="flywayConfig"/>
123 </bean>
margaretha0e8f4e72018-04-05 14:11:52 +0200124
margaretha543f2002017-07-14 00:27:15 +0200125 <bean id="entityManagerFactory"
margarethafcf8bd92021-01-14 10:55:53 +0100126 class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"
127 depends-on="flyway">
margaretha894a7d72017-11-08 19:24:20 +0100128 <!-- <property name="dataSource" ref="dataSource" /> -->
margaretha8514d782018-08-28 17:36:56 +0200129 <property name="dataSource" ref="sqliteDataSource" />
130 <!-- <property name="dataSource" ref="c3p0DataSource" /> -->
margaretha0e8f4e72018-04-05 14:11:52 +0200131
margarethaa452c5e2018-04-25 22:48:09 +0200132 <property name="packagesToScan">
133 <array>
margaretha5b708792023-05-12 16:55:29 +0200134 <value>de.ids_mannheim.korap.core.entity</value>
margarethaa452c5e2018-04-25 22:48:09 +0200135 <value>de.ids_mannheim.korap.entity</value>
136 <value>de.ids_mannheim.korap.oauth2.entity</value>
137 </array>
138 </property>
margaretha543f2002017-07-14 00:27:15 +0200139 <property name="jpaVendorAdapter">
140 <bean id="jpaVendorAdapter"
141 class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
142 <property name="databasePlatform" value="${hibernate.dialect}" />
143 </bean>
144 </property>
145 <property name="jpaProperties">
146 <props>
147 <prop key="hibernate.dialect">${hibernate.dialect}</prop>
148 <prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop>
149 <prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
150 <prop key="hibernate.cache.use_query_cache">${hibernate.cache.use_query_cache}</prop>
151 <prop key="hibernate.cache.use_second_level_cache">${hibernate.cache.use_second_level_cache}
152 </prop>
153 <prop key="hibernate.cache.provider_class">${hibernate.cache.provider}</prop>
154 <prop key="hibernate.cache.region.factory_class">${hibernate.cache.region.factory}</prop>
margaretha6ad08b42018-08-22 18:33:54 +0200155 <prop key="hibernate.jdbc.time_zone">${hibernate.jdbc.time_zone}</prop>
margaretha543f2002017-07-14 00:27:15 +0200156 </props>
157 </property>
158 </bean>
159
160 <tx:annotation-driven proxy-target-class="true"
161 transaction-manager="transactionManager" />
margaretha0e8f4e72018-04-05 14:11:52 +0200162
margaretha543f2002017-07-14 00:27:15 +0200163 <bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
164 <property name="entityManagerFactory" ref="entityManagerFactory" />
165 </bean>
166
167 <bean id="transactionTemplate"
168 class="org.springframework.transaction.support.TransactionTemplate">
169 <constructor-arg ref="transactionManager" />
170 </bean>
171
margarethaade7d4a2017-07-20 19:53:35 +0200172 <!-- Data access objects -->
margaretha34954472018-10-24 20:05:17 +0200173 <bean id="adminDao" class="de.ids_mannheim.korap.dao.AdminDaoImpl" />
margaretha34954472018-10-24 20:05:17 +0200174 <bean id="authorizationDao" class="de.ids_mannheim.korap.oauth2.dao.CachedAuthorizationDaoImpl" />
margarethab4ce6602018-04-26 20:23:57 +0200175
margaretha34954472018-10-24 20:05:17 +0200176 <!-- Filters -->
177 <!-- <bean id="authenticationFilter" class="de.ids_mannheim.korap.web.filter.AuthenticationFilter" >
178 <property name="authenticationManager" ref="kustvakt_authenticationmanager"/>
179 </bean>
180 <bean id="piwikFilter" class="de.ids_mannheim.korap.web.filter.PiwikFilter" >
181 <property name="authenticationManager" ref="kustvakt_authenticationmanager"/>
182 </bean> -->
183
184 <!-- Services -->
185 <bean id="scopeService" class="de.ids_mannheim.korap.oauth2.service.OAuth2ScopeServiceImpl" />
186
margarethab4ce6602018-04-26 20:23:57 +0200187 <!-- props are injected from default-config.xml -->
188 <bean id="kustvakt_config" class="de.ids_mannheim.korap.config.FullConfiguration">
189 <constructor-arg name="properties" ref="props" />
190 </bean>
191
margarethafc5fab22021-07-26 12:17:39 +0200192 <bean id="initializator" class="de.ids_mannheim.de.init.Initializator"
193 init-method="init">
margarethab4ce6602018-04-26 20:23:57 +0200194 </bean>
margaretha47a72a82019-07-03 16:00:54 +0200195
margarethaade7d4a2017-07-20 19:53:35 +0200196 <!-- Krill -->
197 <bean id="search_krill" class="de.ids_mannheim.korap.web.SearchKrill">
margaretha0e8f4e72018-04-05 14:11:52 +0200198 <constructor-arg value="${krill.indexDir}" />
margaretha543f2002017-07-14 00:27:15 +0200199 </bean>
margaretha6cd27f32019-01-24 14:47:47 +0100200
201 <!-- Validator -->
202 <bean id="validator" class="de.ids_mannheim.korap.validator.ApacheValidator"/>
margaretha543f2002017-07-14 00:27:15 +0200203
margaretha31a9f522018-04-03 20:40:45 +0200204 <!-- URLValidator -->
margarethae4034a82018-07-02 14:46:59 +0200205 <bean id="redirectURIValidator" class="org.apache.commons.validator.routines.UrlValidator">
206 <constructor-arg value="http,https" index="0" />
margarethacc929592023-01-31 11:07:35 +0100207 <constructor-arg index="1" type="long"
208 value="#{T(org.apache.commons.validator.routines.UrlValidator).ALLOW_LOCAL_URLS +
209 T(org.apache.commons.validator.routines.UrlValidator).NO_FRAGMENTS}"/>
210
211 <!-- <constructor-arg index="1" type="long">
margarethae4034a82018-07-02 14:46:59 +0200212 <util:constant
213 static-field="org.apache.commons.validator.routines.UrlValidator.NO_FRAGMENTS" />
margarethacc929592023-01-31 11:07:35 +0100214 </constructor-arg> -->
margarethaa0486272018-04-12 19:59:31 +0200215 </bean>
margarethad7cab212018-07-02 19:01:43 +0200216 <bean id="urlValidator" class="org.apache.commons.validator.routines.UrlValidator">
217 <constructor-arg value="http,https" />
218 </bean>
219
margaretha34954472018-10-24 20:05:17 +0200220 <!-- Rewrite -->
margaretha4fa4b062019-01-28 19:43:30 +0100221 <bean id="foundryRewrite" class="de.ids_mannheim.korap.rewrite.FoundryRewrite"/>
222 <bean id="collectionRewrite" class="de.ids_mannheim.korap.rewrite.CollectionRewrite"/>
223 <bean id="virtualCorpusRewrite" class="de.ids_mannheim.korap.rewrite.VirtualCorpusRewrite"/>
Akronbee031a2020-10-29 16:58:14 +0100224 <bean id="queryReferenceRewrite" class="de.ids_mannheim.korap.rewrite.QueryReferenceRewrite"/>
margaretha4fa4b062019-01-28 19:43:30 +0100225
226 <util:list id="rewriteTasks"
227 value-type="de.ids_mannheim.korap.rewrite.RewriteTask">
228 <ref bean="foundryRewrite" />
229 <ref bean="collectionRewrite" />
230 <ref bean="virtualCorpusRewrite" />
Akronbee031a2020-10-29 16:58:14 +0100231 <ref bean="queryReferenceRewrite" />
margaretha4fa4b062019-01-28 19:43:30 +0100232 </util:list>
233
234 <bean id="rewriteHandler" class="de.ids_mannheim.korap.rewrite.RewriteHandler">
235 <constructor-arg ref="rewriteTasks"/>
margaretha56e8e552017-12-05 16:31:21 +0100236 </bean>
237
margarethad7cab212018-07-02 19:01:43 +0200238 <bean id="kustvaktResponseHandler" class="de.ids_mannheim.korap.web.KustvaktResponseHandler">
margaretha0e8f4e72018-04-05 14:11:52 +0200239 </bean>
margarethaa452c5e2018-04-25 22:48:09 +0200240
margarethafb027f92018-04-23 20:00:13 +0200241 <!-- OAuth -->
242 <bean id="oauth2ResponseHandler" class="de.ids_mannheim.korap.web.OAuth2ResponseHandler">
margaretha05122312018-04-16 15:01:34 +0200243 </bean>
margarethaa452c5e2018-04-25 22:48:09 +0200244
margarethaa452c5e2018-04-25 22:48:09 +0200245 <bean name="kustvakt_encryption" class="de.ids_mannheim.korap.encryption.KustvaktEncryption">
margaretha543f2002017-07-14 00:27:15 +0200246 <constructor-arg ref="kustvakt_config" />
247 </bean>
248
249 <!-- authentication providers to use -->
margaretha543f2002017-07-14 00:27:15 +0200250
margarethaac49b502023-04-18 11:01:48 +0200251 <!-- <bean id="session_auth"
margaretha139d0f72017-11-14 18:56:22 +0100252 class="de.ids_mannheim.korap.authentication.SessionAuthentication">
margaretha543f2002017-07-14 00:27:15 +0200253 <constructor-arg type="de.ids_mannheim.korap.config.KustvaktConfiguration"
254 ref="kustvakt_config" />
255 <constructor-arg type="de.ids_mannheim.korap.interfaces.EncryptionIface"
256 ref="kustvakt_encryption" />
margarethaac49b502023-04-18 11:01:48 +0200257 </bean> -->
Michael Hanlca740d72015-06-16 10:04:58 +0200258
margarethacf306d32018-05-30 19:45:35 +0200259 <bean id="oauth2_auth"
260 class="de.ids_mannheim.korap.authentication.OAuth2Authentication" />
261
margaretha543f2002017-07-14 00:27:15 +0200262 <util:list id="kustvakt_authproviders"
263 value-type="de.ids_mannheim.korap.interfaces.AuthenticationIface">
margarethaac49b502023-04-18 11:01:48 +0200264 <!-- <ref bean="session_auth" /> -->
margarethacf306d32018-05-30 19:45:35 +0200265 <ref bean="oauth2_auth" />
margaretha543f2002017-07-14 00:27:15 +0200266 </util:list>
Michael Hanl72c7b832015-09-03 08:42:15 +0200267
268
margaretha543f2002017-07-14 00:27:15 +0200269 <!-- specify type for constructor argument -->
margaretha34954472018-10-24 20:05:17 +0200270 <bean id="authenticationManager"
margaretha139d0f72017-11-14 18:56:22 +0100271 class="de.ids_mannheim.korap.authentication.KustvaktAuthenticationManager">
margaretha543f2002017-07-14 00:27:15 +0200272 <constructor-arg type="de.ids_mannheim.korap.interfaces.EncryptionIface"
273 ref="kustvakt_encryption" />
274 <constructor-arg ref="kustvakt_config" />
margaretha543f2002017-07-14 00:27:15 +0200275 <!-- inject authentication providers to use -->
276 <property name="providers" ref="kustvakt_authproviders" />
277 </bean>
margaretha34954472018-10-24 20:05:17 +0200278
margaretha543f2002017-07-14 00:27:15 +0200279 <!-- todo: if db interfaces not loaded via spring, does transaction even
280 work then? -->
281 <!-- the transactional advice (i.e. what 'happens'; see the <aop:advisor/>
282 bean below) -->
283 <tx:advice id="txAdvice" transaction-manager="txManager">
284 <!-- the transactional semantics... -->
285 <tx:attributes>
286 <!-- all methods starting with 'get' are read-only -->
287 <tx:method name="get*" read-only="true" rollback-for="KorAPException" />
288 <!-- other methods use the default transaction settings (see below) -->
289 <tx:method name="*" rollback-for="KorAPException" />
290 </tx:attributes>
291 </tx:advice>
Michael Hanldaf86602016-05-12 14:31:52 +0200292
margaretha543f2002017-07-14 00:27:15 +0200293 <!-- ensure that the above transactional advice runs for any execution of
294 an operation defined by the service interface -->
295 <aop:config>
296 <aop:pointcut id="service"
297 expression="execution(* de.ids_mannheim.korap.interfaces.db.*.*(..))" />
298 <aop:advisor advice-ref="txAdvice" pointcut-ref="service" />
299 </aop:config>
Michael Hanlf8fcc7a2016-06-03 17:41:07 +0200300
margaretha543f2002017-07-14 00:27:15 +0200301 <!-- similarly, don't forget the PlatformTransactionManager -->
302 <bean id="txManager"
303 class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
margaretha894a7d72017-11-08 19:24:20 +0100304 <!-- <property name="dataSource" ref="dataSource" /> -->
margaretha8514d782018-08-28 17:36:56 +0200305 <property name="dataSource" ref="sqliteDataSource" />
306 <!-- <property name="dataSource" ref="c3p0DataSource" /> -->
margaretha543f2002017-07-14 00:27:15 +0200307 </bean>
margaretha0e8f4e72018-04-05 14:11:52 +0200308
margarethac9f1dfa2018-02-07 17:50:33 +0100309 <!-- mail -->
margaretha0e8f4e72018-04-05 14:11:52 +0200310 <bean id="authenticator" class="de.ids_mannheim.korap.service.MailAuthenticator">
311 <constructor-arg index="0" value="${mail.username}" />
312 <constructor-arg index="1" value="${mail.password}" />
margarethaaecee1b2018-02-20 14:44:21 +0100313 </bean>
margaretha7c21ec82023-08-21 09:55:58 +0200314 <bean id="smtpSession" class="jakarta.mail.Session" factory-method="getInstance">
margarethaaecee1b2018-02-20 14:44:21 +0100315 <constructor-arg index="0">
316 <props>
317 <prop key="mail.smtp.submitter">${mail.username}</prop>
318 <prop key="mail.smtp.auth">${mail.auth}</prop>
319 <prop key="mail.smtp.host">${mail.host}</prop>
320 <prop key="mail.smtp.port">${mail.port}</prop>
321 <prop key="mail.smtp.starttls.enable">${mail.starttls.enable}</prop>
322 <prop key="mail.smtp.connectiontimeout">${mail.connectiontimeout}</prop>
323 </props>
324 </constructor-arg>
margaretha0e8f4e72018-04-05 14:11:52 +0200325 <constructor-arg index="1" ref="authenticator" />
margarethac9f1dfa2018-02-07 17:50:33 +0100326 </bean>
327 <bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl">
margarethaaecee1b2018-02-20 14:44:21 +0100328 <property name="username" value="${mail.username}" />
margaretha0e8f4e72018-04-05 14:11:52 +0200329 <property name="password" value="${mail.password}" />
margarethac9f1dfa2018-02-07 17:50:33 +0100330 <property name="session" ref="smtpSession" />
331 </bean>
332 <bean id="velocityEngine" class="org.apache.velocity.app.VelocityEngine">
333 <constructor-arg index="0">
334 <props>
335 <prop key="resource.loader">class</prop>
margaretha0e8f4e72018-04-05 14:11:52 +0200336 <prop key="class.resource.loader.class">org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
337 </prop>
margarethac9f1dfa2018-02-07 17:50:33 +0100338 </props>
339 </constructor-arg>
margarethaaecee1b2018-02-20 14:44:21 +0100340 </bean>
Akronbee031a2020-10-29 16:58:14 +0100341</beans>