blob: 7cda1cdeb8a35b14b37be45e7c9543f56d425541 [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
49 <bean id='cacheManager' class='org.springframework.cache.ehcache.EhCacheCacheManager'
50 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' />
55
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(',')}"/>
margaretha8fe51e92023-09-20 11:22:20 +0200115 <property name="dataSource" ref="dataSource" />
116 <!-- <property name="dataSource" ref="sqliteDataSource" /> -->
margaretha8514d782018-08-28 17:36:56 +0200117 <!-- <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">
margaretha8fe51e92023-09-20 11:22:20 +0200128 <property name="dataSource" ref="dataSource" />
129 <!-- <property name="dataSource" ref="sqliteDataSource" /> -->
margaretha8514d782018-08-28 17:36:56 +0200130 <!-- <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
margarethafb027f92018-04-23 20:00:13 +0200245 <bean id="mdGenerator" class="org.apache.oltu.oauth2.as.issuer.MD5Generator">
246 </bean>
247 <bean id="oauthIssuer" class="org.apache.oltu.oauth2.as.issuer.OAuthIssuerImpl">
248 <constructor-arg index="0" ref="mdGenerator" />
249 </bean>
margaretha0e8f4e72018-04-05 14:11:52 +0200250
margarethaa452c5e2018-04-25 22:48:09 +0200251 <bean name="kustvakt_encryption" class="de.ids_mannheim.korap.encryption.KustvaktEncryption">
margaretha543f2002017-07-14 00:27:15 +0200252 <constructor-arg ref="kustvakt_config" />
253 </bean>
254
255 <!-- authentication providers to use -->
margaretha543f2002017-07-14 00:27:15 +0200256
margaretha6ef00dd2018-09-12 14:06:38 +0200257 <!-- <bean id="openid_auth"
margaretha139d0f72017-11-14 18:56:22 +0100258 class="de.ids_mannheim.korap.authentication.OpenIDconnectAuthentication">
margaretha543f2002017-07-14 00:27:15 +0200259 <constructor-arg type="de.ids_mannheim.korap.config.KustvaktConfiguration"
260 ref="kustvakt_config" />
261 <constructor-arg
262 type="de.ids_mannheim.korap.interfaces.db.PersistenceClient" ref="kustvakt_db" />
margaretha6ef00dd2018-09-12 14:06:38 +0200263 </bean> -->
margaretha543f2002017-07-14 00:27:15 +0200264
margarethaac49b502023-04-18 11:01:48 +0200265 <!-- <bean id="session_auth"
margaretha139d0f72017-11-14 18:56:22 +0100266 class="de.ids_mannheim.korap.authentication.SessionAuthentication">
margaretha543f2002017-07-14 00:27:15 +0200267 <constructor-arg type="de.ids_mannheim.korap.config.KustvaktConfiguration"
268 ref="kustvakt_config" />
269 <constructor-arg type="de.ids_mannheim.korap.interfaces.EncryptionIface"
270 ref="kustvakt_encryption" />
margarethaac49b502023-04-18 11:01:48 +0200271 </bean> -->
Michael Hanlca740d72015-06-16 10:04:58 +0200272
margarethacf306d32018-05-30 19:45:35 +0200273 <bean id="oauth2_auth"
274 class="de.ids_mannheim.korap.authentication.OAuth2Authentication" />
275
margaretha543f2002017-07-14 00:27:15 +0200276 <util:list id="kustvakt_authproviders"
277 value-type="de.ids_mannheim.korap.interfaces.AuthenticationIface">
margarethaac49b502023-04-18 11:01:48 +0200278 <!-- <ref bean="session_auth" /> -->
margaretha6ef00dd2018-09-12 14:06:38 +0200279 <!-- <ref bean="openid_auth" /> -->
margarethacf306d32018-05-30 19:45:35 +0200280 <ref bean="oauth2_auth" />
margaretha543f2002017-07-14 00:27:15 +0200281 </util:list>
Michael Hanl72c7b832015-09-03 08:42:15 +0200282
283
margaretha543f2002017-07-14 00:27:15 +0200284 <!-- specify type for constructor argument -->
margaretha34954472018-10-24 20:05:17 +0200285 <bean id="authenticationManager"
margaretha139d0f72017-11-14 18:56:22 +0100286 class="de.ids_mannheim.korap.authentication.KustvaktAuthenticationManager">
margaretha543f2002017-07-14 00:27:15 +0200287 <constructor-arg type="de.ids_mannheim.korap.interfaces.EncryptionIface"
288 ref="kustvakt_encryption" />
289 <constructor-arg ref="kustvakt_config" />
margaretha543f2002017-07-14 00:27:15 +0200290 <!-- inject authentication providers to use -->
291 <property name="providers" ref="kustvakt_authproviders" />
292 </bean>
margaretha34954472018-10-24 20:05:17 +0200293
margaretha543f2002017-07-14 00:27:15 +0200294 <!-- todo: if db interfaces not loaded via spring, does transaction even
295 work then? -->
296 <!-- the transactional advice (i.e. what 'happens'; see the <aop:advisor/>
297 bean below) -->
298 <tx:advice id="txAdvice" transaction-manager="txManager">
299 <!-- the transactional semantics... -->
300 <tx:attributes>
301 <!-- all methods starting with 'get' are read-only -->
302 <tx:method name="get*" read-only="true" rollback-for="KorAPException" />
303 <!-- other methods use the default transaction settings (see below) -->
304 <tx:method name="*" rollback-for="KorAPException" />
305 </tx:attributes>
306 </tx:advice>
Michael Hanldaf86602016-05-12 14:31:52 +0200307
margaretha543f2002017-07-14 00:27:15 +0200308 <!-- ensure that the above transactional advice runs for any execution of
309 an operation defined by the service interface -->
310 <aop:config>
311 <aop:pointcut id="service"
312 expression="execution(* de.ids_mannheim.korap.interfaces.db.*.*(..))" />
313 <aop:advisor advice-ref="txAdvice" pointcut-ref="service" />
314 </aop:config>
Michael Hanlf8fcc7a2016-06-03 17:41:07 +0200315
margaretha543f2002017-07-14 00:27:15 +0200316 <!-- similarly, don't forget the PlatformTransactionManager -->
317 <bean id="txManager"
318 class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
margaretha894a7d72017-11-08 19:24:20 +0100319 <!-- <property name="dataSource" ref="dataSource" /> -->
margaretha8514d782018-08-28 17:36:56 +0200320 <property name="dataSource" ref="sqliteDataSource" />
321 <!-- <property name="dataSource" ref="c3p0DataSource" /> -->
margaretha543f2002017-07-14 00:27:15 +0200322 </bean>
margaretha0e8f4e72018-04-05 14:11:52 +0200323
margarethac9f1dfa2018-02-07 17:50:33 +0100324 <!-- mail -->
margaretha0e8f4e72018-04-05 14:11:52 +0200325 <bean id="authenticator" class="de.ids_mannheim.korap.service.MailAuthenticator">
326 <constructor-arg index="0" value="${mail.username}" />
327 <constructor-arg index="1" value="${mail.password}" />
margarethaaecee1b2018-02-20 14:44:21 +0100328 </bean>
329 <bean id="smtpSession" class="javax.mail.Session" factory-method="getInstance">
330 <constructor-arg index="0">
331 <props>
332 <prop key="mail.smtp.submitter">${mail.username}</prop>
333 <prop key="mail.smtp.auth">${mail.auth}</prop>
334 <prop key="mail.smtp.host">${mail.host}</prop>
335 <prop key="mail.smtp.port">${mail.port}</prop>
336 <prop key="mail.smtp.starttls.enable">${mail.starttls.enable}</prop>
337 <prop key="mail.smtp.connectiontimeout">${mail.connectiontimeout}</prop>
338 </props>
339 </constructor-arg>
margaretha0e8f4e72018-04-05 14:11:52 +0200340 <constructor-arg index="1" ref="authenticator" />
margarethac9f1dfa2018-02-07 17:50:33 +0100341 </bean>
342 <bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl">
margarethaaecee1b2018-02-20 14:44:21 +0100343 <property name="username" value="${mail.username}" />
margaretha0e8f4e72018-04-05 14:11:52 +0200344 <property name="password" value="${mail.password}" />
margarethac9f1dfa2018-02-07 17:50:33 +0100345 <property name="session" ref="smtpSession" />
346 </bean>
347 <bean id="velocityEngine" class="org.apache.velocity.app.VelocityEngine">
348 <constructor-arg index="0">
349 <props>
350 <prop key="resource.loader">class</prop>
margaretha0e8f4e72018-04-05 14:11:52 +0200351 <prop key="class.resource.loader.class">org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
352 </prop>
margarethac9f1dfa2018-02-07 17:50:33 +0100353 </props>
354 </constructor-arg>
margarethaaecee1b2018-02-20 14:44:21 +0100355 </bean>
Akronbee031a2020-10-29 16:58:14 +0100356</beans>