1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd">
<!-- Configurer that replaces ${...} placeholders with values from a properties file -->
<bean id="defaultPropertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:config.defaults.properties</value>
</list>
</property>
<property name="order" value="1"/>
</bean>
<bean id="externalPropertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:config.properties</value>
<value>file:/www/sxweb/server/openidcards/infocardop/conf/config.properties</value>
</list>
</property>
<property name="ignoreResourceNotFound" value="true" />
<property name="ignoreUnresolvablePlaceholders" value="true" />
<property name="order" value="0"/>
</bean>
<bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiName" value="${database.jndi}"/>
</bean>
<bean id="privateAssociations" class="org.openid4java.server.JdbcServerAssociationStore">
<property name="dataSource" ref="dataSource"/>
<property name="tableName" value="${private.assoc.table}"/>
</bean>
<bean id="OpenIDServerManager" class="org.openid4java.server.ServerManager">
<property name="privateAssociations" ref="privateAssociations"/>
</bean>
</beans>
|