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" |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 3 | xmlns:p="http://www.springframework.org/schema/p" |
Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 4 | xmlns:util="http://www.springframework.org/schema/util" |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 5 | xmlns:aop="http://www.springframework.org/schema/aop" |
| 6 | xmlns:tx="http://www.springframework.org/schema/tx" |
Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 7 | xmlns="http://www.springframework.org/schema/beans" |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 8 | xmlns:cache="http://www.springframework.org/schema/cache" |
Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 9 | xsi:schemaLocation="http://www.springframework.org/schema/beans |
| 10 | http://www.springframework.org/schema/beans/spring-beans-4.0.xsd |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 11 | http://www.springframework.org/schema/tx |
| 12 | http://www.springframework.org/schema/tx/spring-tx-4.0.xsd |
Michael Hanl | d6eadd5 | 2015-11-11 18:30:33 +0100 | [diff] [blame] | 13 | |
| 14 | |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 15 | http://www.springframework.org/schema/aop |
| 16 | http://www.springframework.org/schema/aop/spring-aop-4.0.xsd |
| 17 | http://www.springframework.org/schema/cache |
| 18 | http://www.springframework.org/schema/cache/spring-cache-4.0.xsd |
| 19 | |
| 20 | |
Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 21 | http://www.springframework.org/schema/util |
| 22 | http://www.springframework.org/schema/util/spring-util-4.0.xsd"> |
| 23 | |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 24 | <cache:annotation-driven/> |
Michael Hanl | d6eadd5 | 2015-11-11 18:30:33 +0100 | [diff] [blame] | 25 | |
| 26 | <bean id="props" |
| 27 | class="org.springframework.beans.factory.config.PropertiesFactoryBean"> |
| 28 | <property name="ignoreResourceNotFound" value="true"/> |
| 29 | <property name="locations"> |
| 30 | <array> |
| 31 | <value>classpath:kustvakt.conf</value> |
| 32 | <value>file:./config/kustvakt.conf</value> |
| 33 | </array> |
| 34 | </property> |
| 35 | </bean> |
Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 36 | |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 37 | <bean id="jdbc_props" |
| 38 | class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> |
Michael Hanl | d6eadd5 | 2015-11-11 18:30:33 +0100 | [diff] [blame] | 39 | <property name="ignoreResourceNotFound" value="true"/> |
| 40 | <property name="locations"> |
| 41 | <array> |
| 42 | <value>classpath:jdbc.properties</value> |
| 43 | <value>file:./config/jdbc.properties</value> |
| 44 | </array> |
| 45 | </property> |
Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 46 | </bean> |
| 47 | |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 48 | <bean id='cacheManager' |
| 49 | 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' |
| 55 | p:shared='true'/> |
| 56 | |
| 57 | <!-- props are injected from default-config.xml --> |
Michael Hanl | 1e18cb4 | 2015-08-06 20:57:35 +0200 | [diff] [blame] | 58 | <bean id="kustvakt_config" |
Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 59 | class="de.ids_mannheim.korap.config.KustvaktConfiguration"> |
Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 60 | <property name="properties" ref="props"/> |
| 61 | </bean> |
| 62 | |
Michael Hanl | f078532 | 2015-11-13 16:14:45 +0100 | [diff] [blame] | 63 | <!--class="org.apache.commons.dbcp2.BasicDataSource"--> |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 64 | <bean id="dataSource" |
Michael Hanl | f078532 | 2015-11-13 16:14:45 +0100 | [diff] [blame] | 65 | class="org.springframework.jdbc.datasource.SingleConnectionDataSource" |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 66 | lazy-init="true"> |
| 67 | <property name="driverClassName" value="${jdbc.driverClassName}"/> |
| 68 | <property name="url" value="${jdbc.url}"/> |
| 69 | <property name="username" value="${jdbc.username}"/> |
| 70 | <property name="password" value="${jdbc.password}"/> |
| 71 | <!-- relevant for single connection datasource and sqlite --> |
Michael Hanl | f078532 | 2015-11-13 16:14:45 +0100 | [diff] [blame] | 72 | <property name="suppressClose"> |
| 73 | <value>true</value> |
| 74 | </property> |
| 75 | <!--<property name="initialSize" value="1"/>--> |
| 76 | <!--<property name="maxIdle" value="1"/>--> |
| 77 | <!--<property name="poolPreparedStatements" value="true"/>--> |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 78 | </bean> |
| 79 | |
| 80 | <!-- to configure database for sqlite, mysql, etc. migrations --> |
| 81 | <bean id="flyway" class="org.flywaydb.core.Flyway" init-method="migrate"> |
| 82 | <property name="baselineOnMigrate" value="false"/> |
| 83 | <property name="locations" |
| 84 | value="classpath:${jdbc.schemaPath}"/> |
| 85 | <property name="dataSource" ref="dataSource"/> |
| 86 | </bean> |
| 87 | |
| 88 | <bean id="kustvakt_db" |
Michael Hanl | 482f30d | 2015-09-25 12:39:46 +0200 | [diff] [blame] | 89 | class="de.ids_mannheim.korap.handlers.JDBCClient"> |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 90 | <constructor-arg index="0" ref="dataSource"/> |
| 91 | <!-- deprecated property --> |
| 92 | <property name="database" value="${jdbc.database}"/> |
| 93 | </bean> |
| 94 | |
| 95 | <bean id="kustvakt_auditing" |
Michael Hanl | 482f30d | 2015-09-25 12:39:46 +0200 | [diff] [blame] | 96 | class="de.ids_mannheim.korap.handlers.JDBCAuditing"> |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 97 | <constructor-arg ref="kustvakt_db"/> |
| 98 | </bean> |
| 99 | |
| 100 | <bean id="kustvakt_userdb" |
Michael Hanl | 482f30d | 2015-09-25 12:39:46 +0200 | [diff] [blame] | 101 | class="de.ids_mannheim.korap.handlers.EntityDao"> |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 102 | <constructor-arg ref="kustvakt_db"/> |
| 103 | </bean> |
| 104 | |
Michael Hanl | 482f30d | 2015-09-25 12:39:46 +0200 | [diff] [blame] | 105 | <!--fixme: change name according to convention --> |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 106 | <bean id="collectionProvider" |
Michael Hanl | 482f30d | 2015-09-25 12:39:46 +0200 | [diff] [blame] | 107 | class="de.ids_mannheim.korap.handlers.CollectionDao"> |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 108 | <constructor-arg ref="kustvakt_db"/> |
| 109 | </bean> |
| 110 | |
Michael Hanl | 482f30d | 2015-09-25 12:39:46 +0200 | [diff] [blame] | 111 | <!--fixme: change name according to convention --> |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 112 | <bean id="resourceProvider" |
Michael Hanl | 482f30d | 2015-09-25 12:39:46 +0200 | [diff] [blame] | 113 | class="de.ids_mannheim.korap.handlers.ResourceDao"> |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 114 | <constructor-arg ref="kustvakt_db"/> |
| 115 | </bean> |
| 116 | |
| 117 | <bean id="kustvakt_policies" |
Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 118 | class="de.ids_mannheim.korap.security.ac.PolicyDao"> |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 119 | <constructor-arg ref="kustvakt_db"/> |
| 120 | </bean> |
| 121 | |
Michael Hanl | 1e18cb4 | 2015-08-06 20:57:35 +0200 | [diff] [blame] | 122 | <bean name="kustvakt_encryption" |
Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 123 | class="de.ids_mannheim.korap.interfaces.defaults.KustvaktEncryption"> |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 124 | <constructor-arg ref="kustvakt_config"/> |
| 125 | </bean> |
| 126 | |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 127 | <!-- authentication providers to use --> |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 128 | <bean id="api_auth" |
Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 129 | class="de.ids_mannheim.korap.security.auth.APIAuthentication"> |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 130 | <constructor-arg |
| 131 | type="de.ids_mannheim.korap.config.KustvaktConfiguration" |
| 132 | ref="kustvakt_config"/> |
| 133 | </bean> |
| 134 | |
| 135 | <bean id="openid_auth" |
Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 136 | class="de.ids_mannheim.korap.security.auth.OpenIDconnectAuthentication"> |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 137 | <constructor-arg |
| 138 | type="de.ids_mannheim.korap.config.KustvaktConfiguration" |
| 139 | ref="kustvakt_config"/> |
| 140 | <constructor-arg |
Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 141 | type="de.ids_mannheim.korap.interfaces.db.PersistenceClient" |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 142 | ref="kustvakt_db"/> |
| 143 | </bean> |
| 144 | |
| 145 | <bean id="basic_auth" |
Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 146 | class="de.ids_mannheim.korap.security.auth.BasicHttpAuth"/> |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 147 | |
| 148 | |
| 149 | <bean id="session_auth" |
Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 150 | class="de.ids_mannheim.korap.security.auth.SessionAuthentication"> |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 151 | <constructor-arg |
| 152 | type="de.ids_mannheim.korap.config.KustvaktConfiguration" |
| 153 | ref="kustvakt_config"/> |
| 154 | <constructor-arg |
| 155 | type="de.ids_mannheim.korap.interfaces.EncryptionIface" |
| 156 | ref="kustvakt_encryption"/> |
| 157 | </bean> |
| 158 | |
| 159 | <util:list id="auth_providers" |
| 160 | value-type="de.ids_mannheim.korap.interfaces.AuthenticationIface"> |
| 161 | <ref bean="basic_auth"/> |
| 162 | <ref bean="session_auth"/> |
| 163 | <ref bean="api_auth"/> |
| 164 | <ref bean="openid_auth"/> |
| 165 | </util:list> |
| 166 | |
| 167 | <!-- specify type for constructor argument --> |
| 168 | <bean id="kustvakt_authenticationmanager" |
Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 169 | class="de.ids_mannheim.korap.security.auth.KustvaktAuthenticationManager"> |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 170 | <constructor-arg |
Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 171 | type="de.ids_mannheim.korap.interfaces.db.EntityHandlerIface" |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 172 | ref="kustvakt_userdb"/> |
| 173 | <constructor-arg type="de.ids_mannheim.korap.interfaces.EncryptionIface" |
| 174 | ref="kustvakt_encryption"/> |
| 175 | <constructor-arg ref="kustvakt_config"/> |
Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 176 | <constructor-arg |
| 177 | type="de.ids_mannheim.korap.interfaces.db.AuditingIface" |
| 178 | ref="kustvakt_auditing"/> |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 179 | <!-- inject authentication providers to use --> |
| 180 | <property name="providers" ref="auth_providers"/> |
| 181 | </bean> |
| 182 | |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 183 | <!-- todo: if db interfaces not loaded via spring, does transaction even work then? --> |
| 184 | <!-- the transactional advice (i.e. what 'happens'; see the <aop:advisor/> bean below) --> |
| 185 | <tx:advice id="txAdvice" transaction-manager="txManager"> |
| 186 | <!-- the transactional semantics... --> |
| 187 | <tx:attributes> |
| 188 | <!-- all methods starting with 'get' are read-only --> |
| 189 | <tx:method name="get*" read-only="true" |
| 190 | rollback-for="KorAPException"/> |
| 191 | <!-- other methods use the default transaction settings (see below) --> |
| 192 | <tx:method name="*" rollback-for="KorAPException"/> |
| 193 | </tx:attributes> |
| 194 | </tx:advice> |
| 195 | |
| 196 | <!-- ensure that the above transactional advice runs for any execution |
| 197 | of an operation defined by the service interface --> |
| 198 | <aop:config> |
| 199 | <aop:pointcut id="service" |
Michael Hanl | f21773f | 2015-10-16 23:02:31 +0200 | [diff] [blame] | 200 | expression="execution(* de.ids_mannheim.korap.interfaces.db.*.*(..))"/> |
Michael Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 201 | <aop:advisor advice-ref="txAdvice" pointcut-ref="service"/> |
| 202 | </aop:config> |
| 203 | |
| 204 | <!-- similarly, don't forget the PlatformTransactionManager --> |
| 205 | <bean id="txManager" |
| 206 | class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> |
| 207 | <property name="dataSource" ref="dataSource"/> |
Michael Hanl | ca740d7 | 2015-06-16 10:04:58 +0200 | [diff] [blame] | 208 | </bean> |
| 209 | </beans> |