You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
1.0 KiB
XML
20 lines
1.0 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"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">
|
|
|
|
<!-- 배치결과 ID -->
|
|
<bean name="egovBatchResultIdGnrService" class="egovframework.rte.fdl.idgnr.impl.EgovTableIdGnrServiceImpl" destroy-method="destroy">
|
|
<property name="dataSource" ref="egov.dataSource" />
|
|
<property name="strategy" ref="batchResultIdStrategy" />
|
|
<property name="blockSize" value="10"/>
|
|
<property name="table" value="COMTECOPSEQ"/>
|
|
<property name="tableName" value="BATCH_RESULT_ID"/>
|
|
</bean>
|
|
<bean name="batchResultIdStrategy" class="egovframework.rte.fdl.idgnr.impl.strategy.EgovIdGnrStrategyImpl">
|
|
<property name="prefix" value="BRT" />
|
|
<property name="cipers" value="17" />
|
|
<property name="fillChar" value="0" />
|
|
</bean>
|
|
<!-- 배치결과 ID -->
|
|
|
|
</beans> |