Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
margaretha | 0e8f4e7 | 2018-04-05 14:11:52 +0200 | [diff] [blame] | 3 | 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" |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 6 | xmlns:cache="http://www.springframework.org/schema/cache" |
| 7 | xsi:schemaLocation="http://www.springframework.org/schema/beans |
| 8 | 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"> |
| 17 | |
| 18 | <context:component-scan base-package="de.ids_mannheim.korap" /> |
| 19 | <context:annotation-config /> |
| 20 | |
margaretha | 0e8f4e7 | 2018-04-05 14:11:52 +0200 | [diff] [blame] | 21 | <!-- <bean id="test" class="de.ids_mannheim.korap.web.Test"> <property name="config" |
| 22 | ref="kustvakt_config" /> </bean> --> |
margaretha | ade7d4a | 2017-07-20 19:53:35 +0200 | [diff] [blame] | 23 | |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 24 | <bean id="props" |
| 25 | class="org.springframework.beans.factory.config.PropertiesFactoryBean"> |
| 26 | <property name="ignoreResourceNotFound" value="true" /> |
| 27 | <property name="locations"> |
| 28 | <array> |
| 29 | <value>classpath:kustvakt.conf</value> |
| 30 | <value>file:./kustvakt.conf</value> |
| 31 | </array> |
| 32 | </property> |
| 33 | </bean> |
| 34 | |
| 35 | <bean id="placeholders" |
| 36 | class="org.springframework.context.support.PropertySourcesPlaceholderConfigurer"> |
| 37 | <property name="ignoreResourceNotFound" value="true" /> |
| 38 | <property name="locations"> |
| 39 | <array> |
margaretha | aecee1b | 2018-02-20 14:44:21 +0100 | [diff] [blame] | 40 | <value>classpath:properties/jdbc.properties</value> |
margaretha | ea68a0a | 2017-09-21 03:09:49 +0200 | [diff] [blame] | 41 | <value>file:./jdbc.properties</value> |
margaretha | aecee1b | 2018-02-20 14:44:21 +0100 | [diff] [blame] | 42 | <value>classpath:properties/mail.properties</value> |
| 43 | <value>file:./mail.properties</value> |
| 44 | <value>classpath:properties/hibernate.properties</value> |
margaretha | 0e8f4e7 | 2018-04-05 14:11:52 +0200 | [diff] [blame] | 45 | |
margaretha | ade7d4a | 2017-07-20 19:53:35 +0200 | [diff] [blame] | 46 | <value>classpath:kustvakt.conf</value> |
margaretha | 14503cd | 2017-09-08 15:35:24 +0200 | [diff] [blame] | 47 | <value>file:./kustvakt.conf</value> |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 48 | </array> |
| 49 | </property> |
| 50 | </bean> |
| 51 | |
| 52 | <bean id='cacheManager' class='org.springframework.cache.ehcache.EhCacheCacheManager' |
| 53 | p:cacheManager-ref='ehcache' /> |
| 54 | |
| 55 | <bean id='ehcache' |
| 56 | class='org.springframework.cache.ehcache.EhCacheManagerFactoryBean' |
| 57 | p:configLocation='classpath:ehcache.xml' p:shared='true' /> |
| 58 | |
| 59 | <!-- props are injected from default-config.xml --> |
margaretha | 56e8e55 | 2017-12-05 16:31:21 +0100 | [diff] [blame] | 60 | <bean id="kustvakt_config" class="de.ids_mannheim.korap.config.FullConfiguration"> |
margaretha | f68daa6 | 2017-09-21 02:11:24 +0200 | [diff] [blame] | 61 | <constructor-arg name="properties" ref="props" /> |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 62 | </bean> |
| 63 | |
| 64 | <!--class="org.apache.commons.dbcp2.BasicDataSource" --> |
| 65 | <!-- org.springframework.jdbc.datasource.SingleConnectionDataSource --> |
| 66 | <bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource" |
| 67 | lazy-init="true"> |
| 68 | <property name="driverClassName" value="${jdbc.driverClassName}" /> |
| 69 | <property name="url" value="${jdbc.url}" /> |
| 70 | <property name="username" value="${jdbc.username}" /> |
| 71 | <property name="password" value="${jdbc.password}" /> |
| 72 | <!-- relevant for single connection datasource and sqlite --> |
| 73 | <!-- <property name="suppressClose"> <value>true</value> </property> --> |
| 74 | <!--<property name="initialSize" value="2"/> --> |
| 75 | <property name="maxTotal" value="4" /> |
| 76 | <property name="maxIdle" value="2" /> |
| 77 | <property name="minIdle" value="1" /> |
| 78 | <property name="maxWaitMillis" value="15000" /> |
| 79 | <!--<property name="poolPreparedStatements" value="true"/> --> |
| 80 | </bean> |
| 81 | |
| 82 | <bean id="sqliteDataSource" |
| 83 | class="org.springframework.jdbc.datasource.SingleConnectionDataSource" |
| 84 | lazy-init="true"> |
| 85 | <property name="driverClassName" value="${jdbc.driverClassName}" /> |
| 86 | <property name="url" value="${jdbc.url}" /> |
| 87 | <property name="username" value="${jdbc.username}" /> |
| 88 | <property name="password" value="${jdbc.password}" /> |
margaretha | e6c711b | 2018-02-06 21:55:04 +0100 | [diff] [blame] | 89 | <property name="connectionProperties"> |
margaretha | 0e8f4e7 | 2018-04-05 14:11:52 +0200 | [diff] [blame] | 90 | <props> |
| 91 | <prop key="date_string_format">yyyy-MM-dd HH:mm:ss</prop> |
| 92 | </props> |
| 93 | </property> |
| 94 | |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 95 | <!-- relevant for single connection datasource and sqlite --> |
| 96 | <property name="suppressClose"> |
| 97 | <value>true</value> |
| 98 | </property> |
| 99 | <!--<property name="initialSize" value="2"/> --> |
| 100 | <!--<property name="poolPreparedStatements" value="true"/> --> |
| 101 | </bean> |
| 102 | |
| 103 | <!-- to configure database for sqlite, mysql, etc. migrations --> |
| 104 | <bean id="flyway" class="org.flywaydb.core.Flyway" init-method="migrate"> |
margaretha | f6d5a82 | 2017-10-19 19:51:20 +0200 | [diff] [blame] | 105 | <property name="baselineOnMigrate" value="true" /> |
margaretha | ecbe72d | 2017-07-26 17:13:32 +0200 | [diff] [blame] | 106 | <!-- <property name="validateOnMigrate" value="false" /> --> |
| 107 | <!-- <property name="cleanOnValidationError" value="true" /> --> |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 108 | <property name="locations" value="${jdbc.schemaPath}" /> |
margaretha | 894a7d7 | 2017-11-08 19:24:20 +0100 | [diff] [blame] | 109 | <!-- <property name="dataSource" ref="dataSource" /> --> |
| 110 | <property name="dataSource" ref="sqliteDataSource" /> |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 111 | </bean> |
margaretha | 0e8f4e7 | 2018-04-05 14:11:52 +0200 | [diff] [blame] | 112 | |
| 113 | |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 114 | <bean id="kustvakt_db" class="de.ids_mannheim.korap.handlers.JDBCClient"> |
| 115 | <constructor-arg index="0" ref="dataSource" /> |
| 116 | <!-- deprecated property --> |
| 117 | <property name="database" value="${jdbc.database}" /> |
| 118 | </bean> |
| 119 | |
| 120 | <bean id="entityManagerFactory" |
| 121 | class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"> |
margaretha | 894a7d7 | 2017-11-08 19:24:20 +0100 | [diff] [blame] | 122 | <!-- <property name="dataSource" ref="dataSource" /> --> |
| 123 | <property name="dataSource" ref="sqliteDataSource" /> |
margaretha | 0e8f4e7 | 2018-04-05 14:11:52 +0200 | [diff] [blame] | 124 | |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 125 | <property name="packagesToScan" value="de.ids_mannheim.korap.entity" /> |
| 126 | <property name="jpaVendorAdapter"> |
| 127 | <bean id="jpaVendorAdapter" |
| 128 | class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"> |
| 129 | <property name="databasePlatform" value="${hibernate.dialect}" /> |
| 130 | </bean> |
| 131 | </property> |
| 132 | <property name="jpaProperties"> |
| 133 | <props> |
| 134 | <prop key="hibernate.dialect">${hibernate.dialect}</prop> |
| 135 | <prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop> |
| 136 | <prop key="hibernate.show_sql">${hibernate.show_sql}</prop> |
| 137 | <prop key="hibernate.cache.use_query_cache">${hibernate.cache.use_query_cache}</prop> |
| 138 | <prop key="hibernate.cache.use_second_level_cache">${hibernate.cache.use_second_level_cache} |
| 139 | </prop> |
| 140 | <prop key="hibernate.cache.provider_class">${hibernate.cache.provider}</prop> |
| 141 | <prop key="hibernate.cache.region.factory_class">${hibernate.cache.region.factory}</prop> |
| 142 | <!-- <prop key="net.sf.ehcache.configurationResourceName">classpath:ehcache.xml</prop> --> |
| 143 | </props> |
| 144 | </property> |
| 145 | </bean> |
| 146 | |
| 147 | <tx:annotation-driven proxy-target-class="true" |
| 148 | transaction-manager="transactionManager" /> |
margaretha | 0e8f4e7 | 2018-04-05 14:11:52 +0200 | [diff] [blame] | 149 | |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 150 | <bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager"> |
| 151 | <property name="entityManagerFactory" ref="entityManagerFactory" /> |
| 152 | </bean> |
| 153 | |
| 154 | <bean id="transactionTemplate" |
| 155 | class="org.springframework.transaction.support.TransactionTemplate"> |
| 156 | <constructor-arg ref="transactionManager" /> |
| 157 | </bean> |
| 158 | |
margaretha | ade7d4a | 2017-07-20 19:53:35 +0200 | [diff] [blame] | 159 | <!-- Data access objects --> |
margaretha | 0e8f4e7 | 2018-04-05 14:11:52 +0200 | [diff] [blame] | 160 | <bean id="resourceDao" class="de.ids_mannheim.korap.dao.ResourceDao" /> |
margaretha | ade7d4a | 2017-07-20 19:53:35 +0200 | [diff] [blame] | 161 | <!-- <bean id="annotationDao" class="de.ids_mannheim.korap.dao.AnnotationDao"/> --> |
| 162 | |
| 163 | <!-- Krill --> |
| 164 | <bean id="search_krill" class="de.ids_mannheim.korap.web.SearchKrill"> |
margaretha | 0e8f4e7 | 2018-04-05 14:11:52 +0200 | [diff] [blame] | 165 | <constructor-arg value="${krill.indexDir}" /> |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 166 | </bean> |
| 167 | |
margaretha | 31a9f52 | 2018-04-03 20:40:45 +0200 | [diff] [blame] | 168 | <!-- URLValidator --> |
| 169 | <bean id="urlValidator" class="org.apache.commons.validator.routines.UrlValidator"> |
margaretha | 0e8f4e7 | 2018-04-05 14:11:52 +0200 | [diff] [blame] | 170 | <constructor-arg value="http,https" /> |
margaretha | 31a9f52 | 2018-04-03 20:40:45 +0200 | [diff] [blame] | 171 | </bean> |
margaretha | a048627 | 2018-04-12 19:59:31 +0200 | [diff] [blame^] | 172 | <bean id="httpsValidator" class="org.apache.commons.validator.routines.UrlValidator"> |
| 173 | <constructor-arg value="https"/> |
| 174 | </bean> |
margaretha | 0e8f4e7 | 2018-04-05 14:11:52 +0200 | [diff] [blame] | 175 | |
margaretha | 56e8e55 | 2017-12-05 16:31:21 +0100 | [diff] [blame] | 176 | <bean id="kustvakt_rewrite" class="de.ids_mannheim.korap.rewrite.FullRewriteHandler"> |
| 177 | <constructor-arg ref="kustvakt_config" /> |
| 178 | </bean> |
| 179 | |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 180 | <bean id="kustvakt_auditing" class="de.ids_mannheim.korap.handlers.JDBCAuditing"> |
| 181 | <constructor-arg ref="kustvakt_db" /> |
| 182 | </bean> |
| 183 | |
margaretha | 0e8f4e7 | 2018-04-05 14:11:52 +0200 | [diff] [blame] | 184 | <bean id="kustvakt_response" class="de.ids_mannheim.korap.web.FullResponseHandler"> |
| 185 | <constructor-arg index="0" name="iface" ref="kustvakt_auditing" /> |
| 186 | </bean> |
| 187 | |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 188 | <bean id="kustvakt_userdb" class="de.ids_mannheim.korap.handlers.EntityDao"> |
| 189 | <constructor-arg ref="kustvakt_db" /> |
| 190 | </bean> |
| 191 | |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 192 | <bean id="resource_provider" class="de.ids_mannheim.korap.handlers.ResourceDao"> |
| 193 | <constructor-arg ref="kustvakt_db" /> |
| 194 | </bean> |
| 195 | |
| 196 | <bean id="document_provider" class="de.ids_mannheim.korap.handlers.DocumentDao"> |
| 197 | <constructor-arg ref="kustvakt_db" /> |
| 198 | </bean> |
| 199 | |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 200 | <bean name="kustvakt_encryption" |
margaretha | 6d61a55 | 2018-04-10 19:26:44 +0200 | [diff] [blame] | 201 | class="de.ids_mannheim.korap.encryption.KustvaktEncryption"> |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 202 | <constructor-arg ref="kustvakt_config" /> |
| 203 | </bean> |
| 204 | |
| 205 | <!-- authentication providers to use --> |
margaretha | 0e8f4e7 | 2018-04-05 14:11:52 +0200 | [diff] [blame] | 206 | <!-- <bean id="api_auth" class="de.ids_mannheim.korap.authentication.APIAuthentication"> |
| 207 | <constructor-arg type="de.ids_mannheim.korap.config.KustvaktConfiguration" |
| 208 | ref="kustvakt_config" /> </bean> --> |
| 209 | |
| 210 | <bean id="client_auth" |
| 211 | class="de.ids_mannheim.korap.authentication.OAuth2ClientAuthentication" /> |
| 212 | |
margaretha | 4de4119 | 2017-11-15 11:47:11 +0100 | [diff] [blame] | 213 | <bean id="ldap_auth" class="de.ids_mannheim.korap.authentication.LdapAuth3"> |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 214 | <constructor-arg type="de.ids_mannheim.korap.config.KustvaktConfiguration" |
| 215 | ref="kustvakt_config" /> |
| 216 | </bean> |
| 217 | |
| 218 | <bean id="openid_auth" |
margaretha | 139d0f7 | 2017-11-14 18:56:22 +0100 | [diff] [blame] | 219 | class="de.ids_mannheim.korap.authentication.OpenIDconnectAuthentication"> |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 220 | <constructor-arg type="de.ids_mannheim.korap.config.KustvaktConfiguration" |
| 221 | ref="kustvakt_config" /> |
| 222 | <constructor-arg |
| 223 | type="de.ids_mannheim.korap.interfaces.db.PersistenceClient" ref="kustvakt_db" /> |
| 224 | </bean> |
| 225 | |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 226 | <bean id="session_auth" |
margaretha | 139d0f7 | 2017-11-14 18:56:22 +0100 | [diff] [blame] | 227 | class="de.ids_mannheim.korap.authentication.SessionAuthentication"> |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 228 | <constructor-arg type="de.ids_mannheim.korap.config.KustvaktConfiguration" |
| 229 | ref="kustvakt_config" /> |
| 230 | <constructor-arg type="de.ids_mannheim.korap.interfaces.EncryptionIface" |
| 231 | ref="kustvakt_encryption" /> |
| 232 | </bean> |
Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 233 | |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 234 | <util:list id="kustvakt_authproviders" |
| 235 | value-type="de.ids_mannheim.korap.interfaces.AuthenticationIface"> |
margaretha | 4de4119 | 2017-11-15 11:47:11 +0100 | [diff] [blame] | 236 | <ref bean="ldap_auth" /> |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 237 | <ref bean="session_auth" /> |
margaretha | 4de4119 | 2017-11-15 11:47:11 +0100 | [diff] [blame] | 238 | <!-- <ref bean="api_auth" /> --> |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 239 | <ref bean="openid_auth" /> |
margaretha | 0e8f4e7 | 2018-04-05 14:11:52 +0200 | [diff] [blame] | 240 | <ref bean="client_auth" /> |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 241 | </util:list> |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 242 | |
| 243 | |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 244 | <bean id="userdata_details" class="de.ids_mannheim.korap.handlers.UserDetailsDao"> |
| 245 | <constructor-arg ref="kustvakt_db" /> |
| 246 | </bean> |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 247 | |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 248 | <bean id="userdata_settings" class="de.ids_mannheim.korap.handlers.UserSettingsDao"> |
| 249 | <constructor-arg ref="kustvakt_db" /> |
| 250 | </bean> |
| 251 | |
| 252 | <util:list id="kustvakt_userdata" |
| 253 | value-type="de.ids_mannheim.korap.interfaces.db.UserdataDbIface"> |
| 254 | <ref bean="userdata_details" /> |
| 255 | <ref bean="userdata_settings" /> |
| 256 | </util:list> |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 257 | |
Michael Hanl | daf8660 | 2016-05-12 14:31:52 +0200 | [diff] [blame] | 258 | |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 259 | <util:list id="kustvakt_resources" |
| 260 | value-type="de.ids_mannheim.korap.interfaces.db.ResourceOperationIface"> |
| 261 | <ref bean="document_provider" /> |
| 262 | <ref bean="resource_provider" /> |
| 263 | </util:list> |
Michael Hanl | f8fcc7a | 2016-06-03 17:41:07 +0200 | [diff] [blame] | 264 | |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 265 | <!-- specify type for constructor argument --> |
| 266 | <bean id="kustvakt_authenticationmanager" |
margaretha | 139d0f7 | 2017-11-14 18:56:22 +0100 | [diff] [blame] | 267 | class="de.ids_mannheim.korap.authentication.KustvaktAuthenticationManager"> |
margaretha | 0e8f4e7 | 2018-04-05 14:11:52 +0200 | [diff] [blame] | 268 | <constructor-arg type="de.ids_mannheim.korap.interfaces.EntityHandlerIface" |
| 269 | ref="kustvakt_userdb" /> |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 270 | <constructor-arg type="de.ids_mannheim.korap.interfaces.EncryptionIface" |
| 271 | ref="kustvakt_encryption" /> |
| 272 | <constructor-arg ref="kustvakt_config" /> |
| 273 | <constructor-arg type="de.ids_mannheim.korap.interfaces.db.AuditingIface" |
| 274 | ref="kustvakt_auditing" /> |
| 275 | <constructor-arg ref="kustvakt_userdata" /> |
| 276 | <!-- inject authentication providers to use --> |
| 277 | <property name="providers" ref="kustvakt_authproviders" /> |
| 278 | </bean> |
Michael Hanl | daf8660 | 2016-05-12 14:31:52 +0200 | [diff] [blame] | 279 | |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 280 | <!-- todo: if db interfaces not loaded via spring, does transaction even |
| 281 | work then? --> |
| 282 | <!-- the transactional advice (i.e. what 'happens'; see the <aop:advisor/> |
| 283 | bean below) --> |
| 284 | <tx:advice id="txAdvice" transaction-manager="txManager"> |
| 285 | <!-- the transactional semantics... --> |
| 286 | <tx:attributes> |
| 287 | <!-- all methods starting with 'get' are read-only --> |
| 288 | <tx:method name="get*" read-only="true" rollback-for="KorAPException" /> |
| 289 | <!-- other methods use the default transaction settings (see below) --> |
| 290 | <tx:method name="*" rollback-for="KorAPException" /> |
| 291 | </tx:attributes> |
| 292 | </tx:advice> |
Michael Hanl | daf8660 | 2016-05-12 14:31:52 +0200 | [diff] [blame] | 293 | |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 294 | <!-- ensure that the above transactional advice runs for any execution of |
| 295 | an operation defined by the service interface --> |
| 296 | <aop:config> |
| 297 | <aop:pointcut id="service" |
| 298 | expression="execution(* de.ids_mannheim.korap.interfaces.db.*.*(..))" /> |
| 299 | <aop:advisor advice-ref="txAdvice" pointcut-ref="service" /> |
| 300 | </aop:config> |
Michael Hanl | f8fcc7a | 2016-06-03 17:41:07 +0200 | [diff] [blame] | 301 | |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 302 | <!-- similarly, don't forget the PlatformTransactionManager --> |
| 303 | <bean id="txManager" |
| 304 | class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> |
margaretha | 894a7d7 | 2017-11-08 19:24:20 +0100 | [diff] [blame] | 305 | <!-- <property name="dataSource" ref="dataSource" /> --> |
| 306 | <property name="dataSource" ref="sqliteDataSource" /> |
margaretha | 543f200 | 2017-07-14 00:27:15 +0200 | [diff] [blame] | 307 | </bean> |
margaretha | 0e8f4e7 | 2018-04-05 14:11:52 +0200 | [diff] [blame] | 308 | |
margaretha | c9f1dfa | 2018-02-07 17:50:33 +0100 | [diff] [blame] | 309 | <!-- mail --> |
margaretha | 0e8f4e7 | 2018-04-05 14:11:52 +0200 | [diff] [blame] | 310 | <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}" /> |
margaretha | aecee1b | 2018-02-20 14:44:21 +0100 | [diff] [blame] | 313 | </bean> |
| 314 | <bean id="smtpSession" class="javax.mail.Session" factory-method="getInstance"> |
| 315 | <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> |
margaretha | 0e8f4e7 | 2018-04-05 14:11:52 +0200 | [diff] [blame] | 325 | <constructor-arg index="1" ref="authenticator" /> |
margaretha | c9f1dfa | 2018-02-07 17:50:33 +0100 | [diff] [blame] | 326 | </bean> |
| 327 | <bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl"> |
margaretha | aecee1b | 2018-02-20 14:44:21 +0100 | [diff] [blame] | 328 | <property name="username" value="${mail.username}" /> |
margaretha | 0e8f4e7 | 2018-04-05 14:11:52 +0200 | [diff] [blame] | 329 | <property name="password" value="${mail.password}" /> |
margaretha | c9f1dfa | 2018-02-07 17:50:33 +0100 | [diff] [blame] | 330 | <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> |
margaretha | 0e8f4e7 | 2018-04-05 14:11:52 +0200 | [diff] [blame] | 336 | <prop key="class.resource.loader.class">org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader |
| 337 | </prop> |
margaretha | c9f1dfa | 2018-02-07 17:50:33 +0100 | [diff] [blame] | 338 | </props> |
| 339 | </constructor-arg> |
margaretha | aecee1b | 2018-02-20 14:44:21 +0100 | [diff] [blame] | 340 | </bean> |
Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 341 | </beans> |