17 lines
745 B
XML
17 lines
745 B
XML
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
|
xmlns:util="http://www.springframework.org/schema/util"
|
||
|
|
xmlns="http://www.springframework.org/schema/beans"
|
||
|
|
xsi:schemaLocation="
|
||
|
|
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
|
||
|
|
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
|
||
|
|
|
||
|
|
<util:map id="serviceLogics">
|
||
|
|
|
||
|
|
<entry key="01" value-ref="RegisterLogic"/>
|
||
|
|
<entry key="03" value-ref="HBLogic"/>
|
||
|
|
<entry key="05" value-ref="RateModelValidateLogic"/>
|
||
|
|
<entry key="09" value-ref="RateModelRequestLogic"/>
|
||
|
|
</util:map>
|
||
|
|
</beans>
|