Skip to content

Commit e9c3f93

Browse files
committed
Edit the translation text
1 parent b77e489 commit e9c3f93

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/site/ko/xdoc/configuration.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ SqlSessionFactory factory = new SqlSessionFactoryBuilder().build(reader, environ
603603
argNameBasedConstructorAutoMapping
604604
</td>
605605
<td>
606-
생성자 자동 매핑을 적용할 때 순서가 아닌 열과 생성자의 인수 이름을 기반으로 매핑한다. (3.5.10 부터)
606+
생성자 자동 매핑을 적용할 때 칼럼 순서가 아닌 칼럼 이름과 생성자 인수들의 이름을 기반으로 매핑한다. (3.5.10 부터)
607607
</td>
608608
<td>
609609
true | false

src/site/ko/xdoc/sqlmap-xml.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ ps.setInt(1,id);]]></source>
513513

514514
<p>
515515
문자열 대체는 SQL 구문의 메타데이터(예를 들어 테이블 이름, 칼럼 이름)가 동적일 때 매우 유용하게 사용할 수 있다.
516-
예를 들면, 테이블의 칼럼 중 하나로 테이블의 데이터를 <code>select</code>하고 싶을 때, 아래와 같이 작성하는 대신:
516+
예를 들면, 테이블의 칼럼 중 하나로 테이블의 데이터를 <code>select</code>하고 싶을 때 아래와 같이 작성하는 대신:
517517
<source><![CDATA[
518518
@Select("select * from user where id = #{id}")
519519
User findById(@Param("id") long id);

0 commit comments

Comments
 (0)