Skip to content

Commit 5911cb6

Browse files
committed
Awful typo [ci skip]
1 parent 4e14c63 commit 5911cb6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/site/es/xdoc/configuration.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1764,7 +1764,7 @@ SqlSessionFactory factory = new SqlSessionFactoryBuilder().build(reader,properti
17641764
<p>MyBatis incluye dos tipos de TransactionManager (ej. type=”[JDBC|MANAGED]”):
17651765
</p>
17661766
<ul>
1767-
<li>JDBC – Este TransactionManager simplemente hace uso del las capacidades de commit y rollback de JDBC. Utiliza la conexión obtenida del DataSource para gestionar la transacción. By default, it enables auto-commit when closing the connection for compatibility with some drivers. However, for some drivers, enabling auto-commit is not only unnecesry, but also is an expensive operation. So, since version 3.5.10, you can skip this step by setting the "skipSetAutoCommitOnClose" property to true. For example:
1767+
<li>JDBC – Este TransactionManager simplemente hace uso del las capacidades de commit y rollback de JDBC. Utiliza la conexión obtenida del DataSource para gestionar la transacción. By default, it enables auto-commit when closing the connection for compatibility with some drivers. However, for some drivers, enabling auto-commit is not only unnecessary, but also is an expensive operation. So, since version 3.5.10, you can skip this step by setting the "skipSetAutoCommitOnClose" property to true. For example:
17681768
<source><![CDATA[<transactionManager type="JDBC">
17691769
<property name="skipSetAutoCommitOnClose" value="true"/>
17701770
</transactionManager>]]></source>

src/site/ko/xdoc/configuration.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1729,7 +1729,7 @@ SqlSessionFactory factory = new SqlSessionFactoryBuilder().build(reader,properti
17291729
<p>마이바티스는 두 가지 타입의 TransactionManager를 제공한다.</p>
17301730
<ul>
17311731
<li>JDBC - 이 설정은 간단하게 JDBC 커밋과 롤백을 처리하기 위해 사용된다.
1732-
트랜잭션의 스코프를 관리하기 위해 dataSource 로 부터 커넥션을 가져온다. By default, it enables auto-commit when closing the connection for compatibility with some drivers. However, for some drivers, enabling auto-commit is not only unnecesry, but also is an expensive operation. So, since version 3.5.10, you can skip this step by setting the "skipSetAutoCommitOnClose" property to true. For example:
1732+
트랜잭션의 스코프를 관리하기 위해 dataSource 로 부터 커넥션을 가져온다. By default, it enables auto-commit when closing the connection for compatibility with some drivers. However, for some drivers, enabling auto-commit is not only unnecessary, but also is an expensive operation. So, since version 3.5.10, you can skip this step by setting the "skipSetAutoCommitOnClose" property to true. For example:
17331733
<source><![CDATA[<transactionManager type="JDBC">
17341734
<property name="skipSetAutoCommitOnClose" value="true"/>
17351735
</transactionManager>]]></source>

src/site/xdoc/configuration.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1991,7 +1991,7 @@ SqlSessionFactory factory = new SqlSessionFactoryBuilder().build(reader, propert
19911991
and
19921992
rollback facilities directly. It relies on the connection
19931993
retrieved from the dataSource to manage the scope of the
1994-
transaction. By default, it enables auto-commit when closing the connection for compatibility with some drivers. However, for some drivers, enabling auto-commit is not only unnecesry, but also is an expensive operation. So, since version 3.5.10, you can skip this step by setting the "skipSetAutoCommitOnClose" property to true. For example:
1994+
transaction. By default, it enables auto-commit when closing the connection for compatibility with some drivers. However, for some drivers, enabling auto-commit is not only unnecessary, but also is an expensive operation. So, since version 3.5.10, you can skip this step by setting the "skipSetAutoCommitOnClose" property to true. For example:
19951995
<source><![CDATA[<transactionManager type="JDBC">
19961996
<property name="skipSetAutoCommitOnClose" value="true"/>
19971997
</transactionManager>]]></source>

0 commit comments

Comments
 (0)