Skip to content

Commit 4cf17ca

Browse files
committed
korean - batch.xml translated
1 parent b743bb5 commit 4cf17ca

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

src/site/ko/xdoc/batch.xml

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@
3131
<p>
3232
마이바티스 스프링 연동모듈의 1.1.0버전에서는 스프링 배치 애플리케이션을 만들기 위해 두개의 빈을 제공한다.
3333
두개의 빈은 <code>MyBatisPagingItemReader</code> 와 <code>MyBatisCursorItemReader</code> 와 <code>MyBatisBatchItemWriter</code>이다.
34-
Also, As of version 2.0.0 provides three builder classes for supporting the Java Configuration: the <code>MyBatisPagingItemReaderBuilder</code>,
35-
the <code>MyBatisCursorItemReaderBuilder</code> and the <code>MyBatisBatchItemWriterBuilder</code>.
34+
35+
또한 2.0.0 버전에서는 Java Configuration 을 지원하는 다음의 세 가지 Builder class 를 제공한다.
36+
<code>MyBatisPagingItemReaderBuilder</code>, <code>MyBatisCursorItemReaderBuilder</code> 그리고 <code>MyBatisBatchItemWriterBuilder</code> 이다.
3637
</p>
3738

3839
<p><span class="label important">중요</span> 이 문서는 <a href="http://static.springsource.org/spring-batch/">스프링 배치</a>에 대한 것으로
@@ -140,31 +141,28 @@ public Map<String, Object> datesParameters(
140141

141142
<subsection name="MyBatisCursorItemReader">
142143
<p>
143-
This bean is an <code>IteamReader</code> that reads records from a database using a cursor.
144+
이 빈은 cursor 를 사용하여 데이터베이스에서 레코드를 읽는 <code>IteamReader</code> 이다.
144145
</p>
145146

146147
<p>
147-
<span class="label important">NOTE</span> To use this bean you need at least MyBatis 3.4.0 or a newer version.
148+
<span class="label important">중요</span> 이 빈을 사용하려면 최소한 MyBatis 3.4.0 이나 그 이상이어야 한다.
148149
</p>
149150

150151
<p>
151-
It executes the query specified as the <code>setQueryId</code> property to retrieve requested data
152-
by using the method <code>selectCursor()</code>.
153-
Each time a <code>read()</code> method is called it will return the next element of the cursor until no more
154-
elements are left.
152+
<code>setQueryId</code> 속성으로 지정된 쿼리를 실행하여 <code>selectCursor()</code> 메서드를 사용하여 요청 된 데이터를 검색한다.
153+
<code>read()</code> 메서드가 호출 될 때마다 요소가 더 이상 남아 있지 않을 때까지 cursor 의 다음 요소를 반환한다.
155154
</p>
156155

157156
<p>
158-
The reader will use a separate connection so the select statement does no participate in any transactions created
159-
as part of the step processing.
157+
reader 는 별도의 connection 을 사용하므로 select 문은 step processing 일부로 생성된 트랜잭션에 속하지 않는다.
160158
</p>
161159

162-
<p>When using the cursor you can just execute a regular query:</p>
160+
<p>cursor 를 사용할 때 다음과 같이 일반 쿼리를 실행할 수 있다.</p>
163161
<source><![CDATA[<select id="getEmployee" resultMap="employeeBatchResult">
164162
SELECT id, name, job FROM employees ORDER BY id ASC
165163
</select>]]></source>
166164

167-
<p>Follows below a sample configuration snippet:</p>
165+
<p>아래는 샘플 설정이다.</p>
168166

169167
<source><![CDATA[<bean id="reader" class="org.mybatis.spring.batch.MyBatisCursorItemReader">
170168
<property name="sqlSessionFactory" ref="sqlSessionFactory" />

0 commit comments

Comments
 (0)