blob: f438fd2ffea06d554d7f25b815e7262b8a2f8008 [file] [log] [blame]
Michael Hanlbd852b82015-11-18 22:17:00 +01001<?xml version="1.0" encoding="UTF-8"?>
2<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
margaretha62055f72017-04-11 19:17:43 +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"
margarethaade7d4a2017-07-20 19:53:35 +02005 xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context"
6 xmlns:cache="http://www.springframework.org/schema/cache"
margaretha62055f72017-04-11 19:17:43 +02007 xsi:schemaLocation="http://www.springframework.org/schema/beans
margarethaade7d4a2017-07-20 19:53:35 +02008 http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
9 http://www.springframework.org/schema/tx
10 http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
11 http://www.springframework.org/schema/aop
12 http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
13 http://www.springframework.org/schema/context
14 http://www.springframework.org/schema/context/spring-context-4.0.xsd
15 http://www.springframework.org/schema/util
16 http://www.springframework.org/schema/util/spring-util-4.0.xsd">
Michael Hanlbd852b82015-11-18 22:17:00 +010017
margarethaade7d4a2017-07-20 19:53:35 +020018 <context:component-scan base-package="de.ids_mannheim.korap" />
19 <context:annotation-config />
Michael Hanlbd852b82015-11-18 22:17:00 +010020
margaretha62055f72017-04-11 19:17:43 +020021 <bean id="props"
22 class="org.springframework.beans.factory.config.PropertiesFactoryBean">
23 <property name="ignoreResourceNotFound" value="true" />
24 <property name="locations">
25 <array>
margaretha0c47c652017-04-19 18:44:40 +020026 <value>classpath:kustvakt-test.conf</value>
27 <value>file:./kustvakt-test.conf</value>
margaretha62055f72017-04-11 19:17:43 +020028 </array>
29 </property>
30 </bean>
Michael Hanlbd852b82015-11-18 22:17:00 +010031
margarethaade7d4a2017-07-20 19:53:35 +020032 <bean id="placeholders"
33 class="org.springframework.context.support.PropertySourcesPlaceholderConfigurer">
margaretha62055f72017-04-11 19:17:43 +020034 <property name="ignoreResourceNotFound" value="true" />
35 <property name="locations">
36 <array>
margaretha6c2a20f2017-07-24 15:33:01 +020037 <value>classpath:test-jdbc.properties</value>
margaretha1f106f62017-10-18 22:27:30 +020038 <value>file:./test-jdbc.properties</value>
margarethaaecee1b2018-02-20 14:44:21 +010039 <value>classpath:properties/mail.properties</value>
40 <value>file:./mail.properties</value>
margarethaf6d5a822017-10-19 19:51:20 +020041 <value>classpath:test-hibernate.properties</value>
margarethaf18298b2017-09-14 22:14:32 +020042 <value>classpath:kustvakt-test.conf</value>
margaretha62055f72017-04-11 19:17:43 +020043 </array>
44 </property>
45 </bean>
Michael Hanlbd852b82015-11-18 22:17:00 +010046
margaretha62055f72017-04-11 19:17:43 +020047 <bean id='cacheManager' class='org.springframework.cache.ehcache.EhCacheCacheManager'
48 p:cacheManager-ref='ehcache' />
Michael Hanlbd852b82015-11-18 22:17:00 +010049
margaretha62055f72017-04-11 19:17:43 +020050 <bean id='ehcache'
51 class='org.springframework.cache.ehcache.EhCacheManagerFactoryBean'
52 p:configLocation='classpath:ehcache.xml' p:shared='true' />
Michael Hanlbd852b82015-11-18 22:17:00 +010053
margaretha6c2a20f2017-07-24 15:33:01 +020054 <bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource"
55 lazy-init="true">
margaretha4edc70e2018-03-14 22:34:29 +010056 <!-- <property name="driverClassName" value="${jdbc.driverClassName}" /> -->
margaretha6c2a20f2017-07-24 15:33:01 +020057 <property name="url" value="${jdbc.url}" />
58 <property name="username" value="${jdbc.username}" />
59 <property name="password" value="${jdbc.password}" />
margaretha318fec32017-10-24 12:11:58 +020060 <property name="maxTotal" value="4" />
margaretha514e1412017-10-10 15:54:20 +020061 <property name="maxIdle" value="1" />
margaretha6c2a20f2017-07-24 15:33:01 +020062 <property name="minIdle" value="1" />
63 <property name="maxWaitMillis" value="15000" />
64 <!--<property name="poolPreparedStatements" value="true"/> -->
65 </bean>
66
margaretha514e1412017-10-10 15:54:20 +020067 <!-- use SingleConnection only for testing! -->
margaretha6c2a20f2017-07-24 15:33:01 +020068 <bean id="sqliteDataSource"
margaretha62055f72017-04-11 19:17:43 +020069 class="org.springframework.jdbc.datasource.SingleConnectionDataSource"
margaretha318fec32017-10-24 12:11:58 +020070 lazy-init="true">
margaretha514e1412017-10-10 15:54:20 +020071 <!-- <property name="driverClassName" value="${jdbc.driverClassName}" /> -->
margaretha6c2a20f2017-07-24 15:33:01 +020072 <property name="url" value="${jdbc.url}" />
73 <property name="username" value="${jdbc.username}" />
74 <property name="password" value="${jdbc.password}" />
margarethae6c711b2018-02-06 21:55:04 +010075 <property name="connectionProperties">
margaretha58e18632018-02-15 13:04:42 +010076 <props>
77 <prop key="date_string_format">yyyy-MM-dd HH:mm:ss</prop>
78 </props>
79 </property>
80
margaretha514e1412017-10-10 15:54:20 +020081 <!-- Sqlite can only have a single connection -->
margaretha62055f72017-04-11 19:17:43 +020082 <property name="suppressClose">
83 <value>true</value>
84 </property>
margaretha514e1412017-10-10 15:54:20 +020085 </bean>
margaretha58e18632018-02-15 13:04:42 +010086
margaretha514e1412017-10-10 15:54:20 +020087 <bean id="c3p0DataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"
margaretha58e18632018-02-15 13:04:42 +010088 destroy-method="close">
89 <property name="driverClass" value="${jdbc.driverClassName}" />
margaretha514e1412017-10-10 15:54:20 +020090 <property name="jdbcUrl" value="${jdbc.url}" />
91 <property name="user" value="${jdbc.username}" />
92 <property name="password" value="${jdbc.password}" />
margaretha58e18632018-02-15 13:04:42 +010093 <property name="maxPoolSize" value="4" />
94 <property name="minPoolSize" value="1" />
95 <property name="maxStatements" value="1" />
96 <property name="testConnectionOnCheckout" value="true" />
margaretha62055f72017-04-11 19:17:43 +020097 </bean>
Michael Hanlbd852b82015-11-18 22:17:00 +010098
margaretha62055f72017-04-11 19:17:43 +020099 <!-- to configure database for sqlite, mysql, etc. migrations -->
100 <bean id="flyway" class="org.flywaydb.core.Flyway" init-method="migrate">
margarethaf6d5a822017-10-19 19:51:20 +0200101 <!-- drop existing tables and create new tables -->
102 <property name="validateOnMigrate" value="true" />
103 <property name="cleanOnValidationError" value="true" />
104
margaretha514e1412017-10-10 15:54:20 +0200105 <property name="baselineOnMigrate" value="false" />
106 <property name="locations" value="${jdbc.schemaPath}" />
margaretha6c2a20f2017-07-24 15:33:01 +0200107 <property name="dataSource" ref="sqliteDataSource" />
margaretha318fec32017-10-24 12:11:58 +0200108 <!-- <property name="dataSource" ref="dataSource" /> -->
margaretha62055f72017-04-11 19:17:43 +0200109 </bean>
Michael Hanlbd852b82015-11-18 22:17:00 +0100110
margaretha62055f72017-04-11 19:17:43 +0200111 <bean id="kustvakt_db" class="de.ids_mannheim.korap.handlers.JDBCClient">
margaretha318fec32017-10-24 12:11:58 +0200112 <!-- <constructor-arg index="0" ref="dataSource" /> -->
margarethabc9caf42017-09-21 18:52:52 +0200113 <constructor-arg index="0" ref="sqliteDataSource" />
margaretha318fec32017-10-24 12:11:58 +0200114 <property name="database" value="${jdbc.database}" />
margaretha62055f72017-04-11 19:17:43 +0200115 </bean>
Michael Hanlbd852b82015-11-18 22:17:00 +0100116
margarethaade7d4a2017-07-20 19:53:35 +0200117 <bean id="entityManagerFactory"
118 class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
margaretha318fec32017-10-24 12:11:58 +0200119 <!-- <property name="dataSource" ref="dataSource" /> -->
120 <property name="dataSource" ref="sqliteDataSource" />
margarethaa452c5e2018-04-25 22:48:09 +0200121 <property name="packagesToScan">
122 <array>
123 <value>de.ids_mannheim.korap.entity</value>
124 <value>de.ids_mannheim.korap.oauth2.entity</value>
125 </array>
126 </property>
margarethaade7d4a2017-07-20 19:53:35 +0200127 <property name="jpaVendorAdapter">
128 <bean id="jpaVendorAdapter"
129 class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
130 <property name="databasePlatform" value="${hibernate.dialect}" />
131 </bean>
132 </property>
133 <property name="jpaProperties">
134 <props>
135 <prop key="hibernate.dialect">${hibernate.dialect}</prop>
136 <prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop>
137 <prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
138 <prop key="hibernate.cache.use_query_cache">${hibernate.cache.use_query_cache}</prop>
139 <prop key="hibernate.cache.use_second_level_cache">${hibernate.cache.use_second_level_cache}
140 </prop>
141 <prop key="hibernate.cache.provider_class">${hibernate.cache.provider}</prop>
142 <prop key="hibernate.cache.region.factory_class">${hibernate.cache.region.factory}</prop>
143 <!-- <prop key="net.sf.ehcache.configurationResourceName">classpath:ehcache.xml</prop> -->
144 </props>
145 </property>
margaretha62055f72017-04-11 19:17:43 +0200146 </bean>
Michael Hanle4fc7752016-02-17 11:41:18 +0100147
margarethaade7d4a2017-07-20 19:53:35 +0200148 <tx:annotation-driven proxy-target-class="true"
149 transaction-manager="transactionManager" />
150 <bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
151 <property name="entityManagerFactory" ref="entityManagerFactory" />
margaretha62055f72017-04-11 19:17:43 +0200152 </bean>
Michael Hanle4fc7752016-02-17 11:41:18 +0100153
margarethaade7d4a2017-07-20 19:53:35 +0200154 <bean id="transactionTemplate"
155 class="org.springframework.transaction.support.TransactionTemplate">
156 <constructor-arg ref="transactionManager" />
157 </bean>
158
159 <!-- Data access objects -->
margaretha58e18632018-02-15 13:04:42 +0100160 <bean id="resourceDao" class="de.ids_mannheim.korap.dao.ResourceDao" />
margarethab4ce6602018-04-26 20:23:57 +0200161 <bean id="accessScopeDao" class="de.ids_mannheim.korap.oauth2.dao.AccessScopeDao" />
margaretha064eb6f2018-07-10 18:33:01 +0200162 <bean id="authorizationDao" class="de.ids_mannheim.korap.oauth2.dao.AuthorizationCacheDao" />
163
margarethab4ce6602018-04-26 20:23:57 +0200164 <!-- props are injected from default-config.xml -->
165 <bean id="kustvakt_config" class="de.ids_mannheim.korap.config.FullConfiguration">
166 <constructor-arg name="properties" ref="props" />
167 </bean>
168
169 <bean id="initializator" class="de.ids_mannheim.korap.config.Initializator"
margaretha1b320452018-08-02 16:56:25 +0200170 init-method="initTest">
margarethab4ce6602018-04-26 20:23:57 +0200171 </bean>
172
margarethaade7d4a2017-07-20 19:53:35 +0200173
margaretha6c2a20f2017-07-24 15:33:01 +0200174 <!-- Krill -->
175 <bean id="search_krill" class="de.ids_mannheim.korap.web.SearchKrill">
margaretha58e18632018-02-15 13:04:42 +0100176 <constructor-arg value="${krill.indexDir}" />
margaretha6c2a20f2017-07-24 15:33:01 +0200177 </bean>
178
margaretha31a9f522018-04-03 20:40:45 +0200179 <!-- URLValidator -->
margarethae4034a82018-07-02 14:46:59 +0200180 <bean id="redirectURIValidator" class="org.apache.commons.validator.routines.UrlValidator">
181 <constructor-arg value="http,https" index="0" />
182 <constructor-arg index="1" type="long">
183 <util:constant
184 static-field="org.apache.commons.validator.routines.UrlValidator.NO_FRAGMENTS" />
185 </constructor-arg>
margaretha31a9f522018-04-03 20:40:45 +0200186 </bean>
margarethad7cab212018-07-02 19:01:43 +0200187 <bean id="urlValidator" class="org.apache.commons.validator.routines.UrlValidator">
188 <constructor-arg value="http,https" />
189 </bean>
margaretha56e8e552017-12-05 16:31:21 +0100190
191 <bean id="kustvakt_rewrite" class="de.ids_mannheim.korap.rewrite.FullRewriteHandler">
192 <constructor-arg ref="kustvakt_config" />
193 </bean>
194
margaretha62055f72017-04-11 19:17:43 +0200195 <bean id="kustvakt_auditing" class="de.ids_mannheim.korap.handlers.JDBCAuditing">
196 <constructor-arg ref="kustvakt_db" />
197 </bean>
margaretha58e18632018-02-15 13:04:42 +0100198
margarethada3c7852018-06-14 20:35:11 +0200199 <bean id="kustvaktResponseHandler" class="de.ids_mannheim.korap.web.KustvaktResponseHandler">
margaretha05122312018-04-16 15:01:34 +0200200 <constructor-arg index="0" name="iface" ref="kustvakt_auditing" />
201 </bean>
margarethafb027f92018-04-23 20:00:13 +0200202
203 <!-- OAuth -->
margarethaf839dde2018-04-16 17:52:57 +0200204 <bean id="oauth2ResponseHandler" class="de.ids_mannheim.korap.web.OAuth2ResponseHandler">
margaretha58e18632018-02-15 13:04:42 +0100205 <constructor-arg index="0" name="iface" ref="kustvakt_auditing" />
206 </bean>
Michael Hanlbd852b82015-11-18 22:17:00 +0100207
margarethafb027f92018-04-23 20:00:13 +0200208 <bean id="mdGenerator" class="org.apache.oltu.oauth2.as.issuer.MD5Generator">
209 </bean>
210 <bean id="oauthIssuer" class="org.apache.oltu.oauth2.as.issuer.OAuthIssuerImpl">
211 <constructor-arg index="0" ref="mdGenerator" />
212 </bean>
213
margaretha62055f72017-04-11 19:17:43 +0200214 <bean id="kustvakt_userdb" class="de.ids_mannheim.korap.handlers.EntityDao">
215 <constructor-arg ref="kustvakt_db" />
216 </bean>
Michael Hanlbd852b82015-11-18 22:17:00 +0100217
margaretha62055f72017-04-11 19:17:43 +0200218 <bean id="document_provider" class="de.ids_mannheim.korap.handlers.DocumentDao">
219 <constructor-arg ref="kustvakt_db" />
220 </bean>
Michael Hanlbd852b82015-11-18 22:17:00 +0100221
margarethafb027f92018-04-23 20:00:13 +0200222 <bean name="kustvakt_encryption" class="de.ids_mannheim.korap.encryption.KustvaktEncryption">
margaretha62055f72017-04-11 19:17:43 +0200223 <constructor-arg ref="kustvakt_config" />
224 </bean>
Michael Hanlbd852b82015-11-18 22:17:00 +0100225
margaretha62055f72017-04-11 19:17:43 +0200226 <!-- authentication providers to use -->
margaretha58e18632018-02-15 13:04:42 +0100227 <!-- <bean id="api_auth" class="de.ids_mannheim.korap.authentication.APIAuthentication">
228 <constructor-arg type="de.ids_mannheim.korap.config.KustvaktConfiguration"
229 ref="kustvakt_config" /> </bean> -->
margaretha4de41192017-11-15 11:47:11 +0100230 <bean id="ldap_auth" class="de.ids_mannheim.korap.authentication.LdapAuth3">
margaretha62055f72017-04-11 19:17:43 +0200231 <constructor-arg type="de.ids_mannheim.korap.config.KustvaktConfiguration"
232 ref="kustvakt_config" />
233 </bean>
margaretha58e18632018-02-15 13:04:42 +0100234
margaretha62055f72017-04-11 19:17:43 +0200235 <bean id="openid_auth"
margaretha139d0f72017-11-14 18:56:22 +0100236 class="de.ids_mannheim.korap.authentication.OpenIDconnectAuthentication">
margaretha62055f72017-04-11 19:17:43 +0200237 <constructor-arg type="de.ids_mannheim.korap.config.KustvaktConfiguration"
238 ref="kustvakt_config" />
239 <constructor-arg
240 type="de.ids_mannheim.korap.interfaces.db.PersistenceClient" ref="kustvakt_db" />
241 </bean>
242
margaretha58e18632018-02-15 13:04:42 +0100243 <bean id="basic_auth"
244 class="de.ids_mannheim.korap.authentication.BasicAuthentication" />
Michael Hanlbd852b82015-11-18 22:17:00 +0100245
246
margaretha62055f72017-04-11 19:17:43 +0200247 <bean id="session_auth"
margaretha139d0f72017-11-14 18:56:22 +0100248 class="de.ids_mannheim.korap.authentication.SessionAuthentication">
margaretha62055f72017-04-11 19:17:43 +0200249 <constructor-arg type="de.ids_mannheim.korap.config.KustvaktConfiguration"
250 ref="kustvakt_config" />
251 <constructor-arg type="de.ids_mannheim.korap.interfaces.EncryptionIface"
252 ref="kustvakt_encryption" />
253 </bean>
margarethae4034a82018-07-02 14:46:59 +0200254
margarethacf306d32018-05-30 19:45:35 +0200255 <bean id="oauth2_auth"
256 class="de.ids_mannheim.korap.authentication.OAuth2Authentication" />
margarethae4034a82018-07-02 14:46:59 +0200257
Michael Hanlbd852b82015-11-18 22:17:00 +0100258
margaretha62055f72017-04-11 19:17:43 +0200259 <util:list id="kustvakt_authproviders"
260 value-type="de.ids_mannheim.korap.interfaces.AuthenticationIface">
261 <ref bean="basic_auth" />
margaretha4de41192017-11-15 11:47:11 +0100262 <ref bean="ldap_auth" />
margaretha62055f72017-04-11 19:17:43 +0200263 <ref bean="session_auth" />
margaretha4de41192017-11-15 11:47:11 +0100264 <!-- <ref bean="api_auth" /> -->
margaretha62055f72017-04-11 19:17:43 +0200265 <ref bean="openid_auth" />
margarethacf306d32018-05-30 19:45:35 +0200266 <ref bean="oauth2_auth" />
margaretha62055f72017-04-11 19:17:43 +0200267 </util:list>
Michael Hanlbd852b82015-11-18 22:17:00 +0100268
margarethaade7d4a2017-07-20 19:53:35 +0200269
margaretha62055f72017-04-11 19:17:43 +0200270 <bean id="userdata_details" class="de.ids_mannheim.korap.handlers.UserDetailsDao">
margarethaade7d4a2017-07-20 19:53:35 +0200271 <constructor-arg ref="kustvakt_db" />
margaretha62055f72017-04-11 19:17:43 +0200272 </bean>
margarethaade7d4a2017-07-20 19:53:35 +0200273
margaretha62055f72017-04-11 19:17:43 +0200274 <bean id="userdata_settings" class="de.ids_mannheim.korap.handlers.UserSettingsDao">
margarethaade7d4a2017-07-20 19:53:35 +0200275 <constructor-arg ref="kustvakt_db" />
margaretha62055f72017-04-11 19:17:43 +0200276 </bean>
Michael Hanldaf86602016-05-12 14:31:52 +0200277
margaretha62055f72017-04-11 19:17:43 +0200278 <util:list id="kustvakt_userdata"
279 value-type="de.ids_mannheim.korap.interfaces.db.UserdataDbIface">
280 <ref bean="userdata_details" />
281 <ref bean="userdata_settings" />
282 </util:list>
Michael Hanldaf86602016-05-12 14:31:52 +0200283
margaretha62055f72017-04-11 19:17:43 +0200284 <util:list id="kustvakt_resources"
285 value-type="de.ids_mannheim.korap.interfaces.db.ResourceOperationIface">
286 <ref bean="document_provider" />
margaretha62055f72017-04-11 19:17:43 +0200287 </util:list>
Michael Hanlf8fcc7a2016-06-03 17:41:07 +0200288
margaretha62055f72017-04-11 19:17:43 +0200289 <!-- specify type for constructor argument -->
290 <bean id="kustvakt_authenticationmanager"
margaretha139d0f72017-11-14 18:56:22 +0100291 class="de.ids_mannheim.korap.authentication.KustvaktAuthenticationManager">
margarethafb027f92018-04-23 20:00:13 +0200292 <constructor-arg type="de.ids_mannheim.korap.interfaces.EntityHandlerIface"
293 ref="kustvakt_userdb" />
margaretha62055f72017-04-11 19:17:43 +0200294 <constructor-arg type="de.ids_mannheim.korap.interfaces.EncryptionIface"
295 ref="kustvakt_encryption" />
296 <constructor-arg ref="kustvakt_config" />
297 <constructor-arg type="de.ids_mannheim.korap.interfaces.db.AuditingIface"
298 ref="kustvakt_auditing" />
299 <constructor-arg ref="kustvakt_userdata" />
300 <!-- inject authentication providers to use -->
301 <property name="providers" ref="kustvakt_authproviders" />
302 </bean>
Michael Hanlbd852b82015-11-18 22:17:00 +0100303
margaretha62055f72017-04-11 19:17:43 +0200304 <!-- todo: if db interfaces not loaded via spring, does transaction even
305 work then? -->
306 <!-- the transactional advice (i.e. what 'happens'; see the <aop:advisor/>
307 bean below) -->
308 <tx:advice id="txAdvice" transaction-manager="txManager">
309 <!-- the transactional semantics... -->
310 <tx:attributes>
311 <!-- all methods starting with 'get' are read-only -->
312 <tx:method name="get*" read-only="true" rollback-for="KorAPException" />
313 <!-- other methods use the default transaction settings (see below) -->
314 <tx:method name="*" rollback-for="KorAPException" />
315 </tx:attributes>
316 </tx:advice>
Michael Hanlbd852b82015-11-18 22:17:00 +0100317
margaretha62055f72017-04-11 19:17:43 +0200318 <!-- ensure that the above transactional advice runs for any execution of
319 an operation defined by the service interface -->
320 <aop:config>
321 <aop:pointcut id="service"
322 expression="execution(* de.ids_mannheim.korap.interfaces.db.*.*(..))" />
323 <aop:advisor advice-ref="txAdvice" pointcut-ref="service" />
324 </aop:config>
Michael Hanlbd852b82015-11-18 22:17:00 +0100325
margaretha62055f72017-04-11 19:17:43 +0200326 <!-- similarly, don't forget the PlatformTransactionManager -->
327 <bean id="txManager"
328 class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
329 <property name="dataSource" ref="dataSource" />
330 </bean>
margaretha58e18632018-02-15 13:04:42 +0100331
332 <!-- mail -->
margarethaaecee1b2018-02-20 14:44:21 +0100333 <bean id="authenticator" class="de.ids_mannheim.korap.service.MailAuthenticator">
margarethafb027f92018-04-23 20:00:13 +0200334 <constructor-arg index="0" value="${mail.username}" />
335 <constructor-arg index="1" value="${mail.password}" />
margarethaaecee1b2018-02-20 14:44:21 +0100336 </bean>
337 <bean id="smtpSession" class="javax.mail.Session" factory-method="getInstance">
338 <constructor-arg index="0">
339 <props>
340 <prop key="mail.smtp.submitter">${mail.username}</prop>
341 <prop key="mail.smtp.auth">${mail.auth}</prop>
342 <prop key="mail.smtp.host">${mail.host}</prop>
343 <prop key="mail.smtp.port">${mail.port}</prop>
344 <prop key="mail.smtp.starttls.enable">${mail.starttls.enable}</prop>
345 <prop key="mail.smtp.connectiontimeout">${mail.connectiontimeout}</prop>
346 </props>
347 </constructor-arg>
margarethafb027f92018-04-23 20:00:13 +0200348 <constructor-arg index="1" ref="authenticator" />
margaretha58e18632018-02-15 13:04:42 +0100349 </bean>
350 <bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl">
351 <property name="session" ref="smtpSession" />
352 </bean>
353 <bean id="velocityEngine" class="org.apache.velocity.app.VelocityEngine">
354 <constructor-arg index="0">
355 <props>
356 <prop key="resource.loader">class</prop>
357 <prop key="class.resource.loader.class">org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
358 </prop>
359 </props>
360 </constructor-arg>
margarethaaecee1b2018-02-20 14:44:21 +0100361 </bean>
Michael Hanlbd852b82015-11-18 22:17:00 +0100362</beans>