26 lines
1.1 KiB
XML
26 lines
1.1 KiB
XML
<?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:context="http://www.springframework.org/schema/context"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
|
|
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd">
|
|
|
|
<!-- Root Context: defines shared resources visible to all other web components -->
|
|
<context:component-scan base-package="com.svan.ucs" />
|
|
|
|
<!-- Application Message Bundle -->
|
|
<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
|
|
<property name="basename" value="/WEB-INF/messages/messages" />
|
|
<property name="cacheSeconds" value="0" />
|
|
</bean>
|
|
|
|
<bean id="messageSourceAccessor" class="org.springframework.context.support.MessageSourceAccessor">
|
|
<constructor-arg>
|
|
<ref local="messageSource" />
|
|
</constructor-arg>
|
|
</bean>
|
|
|
|
<context:property-placeholder
|
|
location="classpath:properties/jdbc.properties" />
|
|
</beans>
|