Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/site/es/xdoc/java-api.xml
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,13 @@ try (SqlSession session = sqlSessionFactory.openSession()) {
<td><code>@CacheNamespace</code></td>
<td><code>Class</code></td>
<td><code>&lt;cache&gt;</code></td>
<td>Configura la cache para un namespace (una clase). Atributos: implementation, eviction, flushInterval, size and readWrite.</td>
<td>Configura la cache para un namespace (una clase). Atributos: implementation, eviction, flushInterval, size, readWrite, blocking and properties.</td>
</tr>
<tr>
<td><code>@Property</code></td>
<td>N/A</td>
<td><code>&lt;property&gt;</code></td>
<td>Specifies the property value or placeholder(can replace by configuration properties that defined at the <code>mybatis-config.xml</code>). Attributes: <code>name</code>, <code>value</code>. (Available on MyBatis 3.4.2+)</td>
</tr>
<tr>
<td><code>@CacheNamespaceRef</code></td>
Expand Down
8 changes: 7 additions & 1 deletion src/site/ja/xdoc/java-api.xml
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,13 @@ try (SqlSession session = sqlSessionFactory.openSession()) {
<td><code>@CacheNamespace</code></td>
<td><code>Class</code></td>
<td><code>&lt;cache&gt;</code></td>
<td>アノテーションを付加したネームスペース(=クラス)に対するキャッシュを設定します。属性: <code>implementation</code>, <code>eviction</code>, <code>flushInterval</code>, <code>size</code>, <code>readWrite</code></td>
<td>アノテーションを付加したネームスペース(=クラス)に対するキャッシュを設定します。属性: <code>implementation</code>, <code>eviction</code>, <code>flushInterval</code>, <code>size</code>, <code>readWrite</code>, <code>blocking</code>, <code>properties</code></td>
</tr>
<tr>
<td><code>@Property</code></td>
<td>N/A</td>
<td><code>&lt;property&gt;</code></td>
<td>プロパティ値またはプレースホルダ(<code>mybatis-config.xml</code>で定義した構成プロパティで置き換えすることができる)を指定します。属性: <code>name</code>, <code>value</code>。 (MyBatis 3.4.2+で利用可能)</td>
</tr>
<tr>
<td><code>@CacheNamespaceRef</code></td>
Expand Down
8 changes: 7 additions & 1 deletion src/site/ko/xdoc/java-api.xml
Original file line number Diff line number Diff line change
Expand Up @@ -409,9 +409,15 @@ try (SqlSession session = sqlSessionFactory.openSession()) {
<td><code>Class</code></td>
<td><code>&lt;cache&gt;</code></td>
<td>명명공간을 위한 캐시 설정
사용가능한 속성들 : implementation, eviction, flushInterval, size 그리고 readWrite.
사용가능한 속성들 : implementation, eviction, flushInterval, size, readWrite, blocking 그리고 properties.
</td>
</tr>
<tr>
<td><code>@Property</code></td>
<td>N/A</td>
<td><code>&lt;property&gt;</code></td>
<td>Specifies the property value or placeholder(can replace by configuration properties that defined at the <code>mybatis-config.xml</code>). Attributes: <code>name</code>, <code>value</code>. (Available on MyBatis 3.4.2+)</td>
</tr>
<tr>
<td><code>@CacheNamespaceRef</code></td>
<td><code>Class</code></td>
Expand Down
13 changes: 11 additions & 2 deletions src/site/xdoc/java-api.xml
Original file line number Diff line number Diff line change
Expand Up @@ -326,8 +326,17 @@ try (SqlSession session = sqlSessionFactory.openSession()) {
<td><code>@CacheNamespace</code></td>
<td><code>Class</code></td>
<td><code>&lt;cache&gt;</code></td>
<td>Configures the cache for the given namespace (i.e. class). Attributes: <code>implementation</code>,
<code>eviction</code>, <code>flushInterval</code>, <code>size</code>, <code>readWrite</code>.</td>
<td>
Configures the cache for the given namespace (i.e. class). Attributes: <code>implementation</code>,
<code>eviction</code>, <code>flushInterval</code>, <code>size</code>, <code>readWrite</code>,
<code>blocking</code>, <code>properties</code>.
</td>
</tr>
<tr>
<td><code>@Property</code></td>
<td>N/A</td>
<td><code>&lt;property&gt;</code></td>
<td>Specifies the property value or placeholder(can replace by configuration properties that defined at the <code>mybatis-config.xml</code>). Attributes: <code>name</code>, <code>value</code>. (Available on MyBatis 3.4.2+)</td>
</tr>
<tr>
<td><code>@CacheNamespaceRef</code></td>
Expand Down
8 changes: 7 additions & 1 deletion src/site/zh/xdoc/java-api.xml
Original file line number Diff line number Diff line change
Expand Up @@ -525,9 +525,15 @@ try (SqlSession session = sqlSessionFactory.openSession()) {
(比如类)
配置缓存。
属性:implemetation,eviction,
flushInterval,size 和 readWrite
flushInterval,size,readWrite,blockingproperties
</td>
</tr>
<tr>
<td><code>@Property</code></td>
<td>N/A</td>
<td><code>&lt;property&gt;</code></td>
<td>Specifies the property value or placeholder(can replace by configuration properties that defined at the <code>mybatis-config.xml</code>). Attributes: <code>name</code>, <code>value</code>. (Available on MyBatis 3.4.2+)</td>
</tr>
<tr>
<td><code>@CacheNamespaceRef</code></td>
<td><code>类</code></td>
Expand Down