| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| <!-- This should not end in *Context as it would then be picked up in the cargo start --> |
| <beans xmlns="http://www.springframework.org/schema/beans" |
| xmlns:context="http://www.springframework.org/schema/context" |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xmlns:tx="http://www.springframework.org/schema/tx" |
| xmlns:aop="http://www.springframework.org/schema/aop" |
| xsi:schemaLocation="http://www.springframework.org/schema/beans |
| http://www.springframework.org/schema/beans/spring-beans.xsd |
| http://www.springframework.org/schema/context |
| http://www.springframework.org/schema/context/spring-context.xsd |
| http://www.springframework.org/schema/tx |
| http://www.springframework.org/schema/tx/spring-tx.xsd |
| http://www.springframework.org/schema/aop |
| http://www.springframework.org/schema/aop/spring-aop.xsd"> |
| |
| <!-- Uncomment to enable single unit test execution via -Dtest=... --> |
| <!--<bean class="org.apache.syncope.core.util.ApplicationContextProvider"/>--> |
| |
| <bean class="org.apache.syncope.core.persistence.dao.impl.TestDbInitializer"/> |
| <bean class="org.apache.syncope.core.persistence.dao.DummyConnectorRegistry"/> |
| <bean class="org.apache.syncope.core.persistence.dao.impl.ContentLoader"/> |
| |
| <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> |
| <property name="locations"> |
| <list> |
| <value>classpath:persistence.properties</value> |
| <value>classpath:security.properties</value> |
| <value>classpath:workflow.properties</value> |
| </list> |
| </property> |
| <property name="ignoreResourceNotFound" value="true"/> |
| <property name="ignoreUnresolvablePlaceholders" value="true"/> |
| </bean> |
| |
| <bean id="nonJPAdbInitializer" |
| class="org.springframework.jdbc.datasource.init.DataSourceInitializer"> |
| <property name="dataSource" ref="dataSource"/> |
| <property name="enabled" value="true"/> |
| <property name="databasePopulator"> |
| <bean |
| class="org.springframework.jdbc.datasource.init.ResourceDatabasePopulator"> |
| <property name="continueOnError" value="true"/> |
| <property name="ignoreFailedDrops" value="true"/> |
| <property name="sqlScriptEncoding" value="UTF-8"/> |
| <property name="scripts"> |
| <array> |
| <value type="org.springframework.core.io.Resource"> |
| classpath:/quartz/${quartz.sql} |
| </value> |
| <value type="org.springframework.core.io.Resource"> |
| classpath:/logback/${logback.sql} |
| </value> |
| </array> |
| </property> |
| </bean> |
| </property> |
| </bean> |
| |
| <import resource="persistenceContext.xml"/> |
| </beans> |