GGWEB/target/MBCA-1.0.0/WEB-INF/classes/egovframework/spring/context-idgen.xml

19 lines
909 B
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"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">
<bean name="egovIdGnrService" class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" destroy-method="destroy">
<property name="dataSource" ref="dataSource" />
<property name="strategy" ref="mixPrefixSample" />
<property name="blockSize" value="10"/>
<property name="table" value="IDS"/>
<property name="tableName" value="SAMPLE"/>
</bean>
<bean name="mixPrefixSample" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl">
<property name="prefix" value="SAMPLE-" />
<property name="cipers" value="5" />
<property name="fillChar" value="0" />
</bean>
</beans>