Skip to content

Commit 13e8a1d

Browse files
docs: update [skip ci]
1 parent 3aa0942 commit 13e8a1d

File tree

4 files changed

+10
-13
lines changed

4 files changed

+10
-13
lines changed

src/site/es/markdown/index.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
title: MyBatis 3 | Introducción
2-
author: Clinton Begin,Eduardo Macarron
2+
<meta name="author" content="Clinton Begin" />
3+
<meta name="author" content="Eduardo Macarron" />
34

45
## Introducción
56

67
### ¿Qué es MyBatis?
78

89
MyBatis es un framework de persistencia que soporta SQL, procedimientos almacenados y mapeos avanzados. MyBatis elimina casi todo el código JDBC, el establecimiento manual de parámetros y la obtención de resultados. MyBatis puede configurarse con XML o anotaciones y permite mapear typos de datos primitivos, objetos de tipo Map y POJOs (Plain Old Java Objects) a registros de base de datos.
910

10-
If you are completely new to database access in Java, https://www.marcobehler.com/guides/a-guide-to-accessing-databases-in-java contains a good overview of the various parts, pieces and options and shows you where exactly MyBatis fits in.
11-
1211
### Colabora para mejorar esta documentación...
1312

1413
Si ves que hay alguna carencia en esta documentación o que falta alguna característica por documentar, te animamos a que lo investigues y la documentes tu mismo!

src/site/ja/markdown/index.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
title: MyBatis 3 | イントロダクション
2-
author: Clinton Begin,Iwao AVE!
2+
<meta name="author" content="Clinton Begin" />
3+
<meta name="author" content="Iwao AVE!" />
34

45
## イントロダクション
56

67
### MyBatis とは?
78

89
MyBatis はカスタム SQL、ストアドプロシージャ、高度なマッピング処理に対応した優れた永続化フレームワークです。 MyBatisを使うことで、直接 JDBC を扱うコードを書いたり、クエリ引数やクエリ結果を手動で設定する必要がほとんどなくなります。 MyBatis の設定やデータベースレコードと Java オブジェクトの関連付けは、XML またはアノテーションを使って行うことができます。
910

10-
If you are completely new to database access in Java, https://www.marcobehler.com/guides/a-guide-to-accessing-databases-in-java contains a good overview of the various parts, pieces and options and shows you where exactly MyBatis fits in.
11-
1211
### このドキュメントの改善にご協力ください...
1312

1413
このドキュメントの中で誤りや特定の機能に関する記述が抜けていることに気づいたら、詳しく調べてドキュメントを更新して頂けると助かります。

src/site/ko/markdown/index.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
title: 마이바티스 3 | 소개
2-
author: Clinton Begin,이동국(한국어 번역)
2+
<meta name="author" content="Clinton Begin" />
3+
<meta name="author" content="이동국(한국어 번역)" />
34

45
## 소개
56

67
### 마이바티스는 무엇인가?
78

89
마이바티스는 개발자가 지정한 SQL, 저장프로시저 그리고 몇가지 고급 매핑을 지원하는 퍼시스턴스 프레임워크이다. 마이바티스는 JDBC로 처리하는 상당부분의 코드와 파라미터 설정및 결과 매핑을 대신해준다. 마이바티스는 데이터베이스 레코드에 원시타입과 Map 인터페이스 그리고 자바 POJO 를 설정해서 매핑하기 위해 XML과 애노테이션을 사용할 수 있다.
910

10-
If you are completely new to database access in Java, https://www.marcobehler.com/guides/a-guide-to-accessing-databases-in-java contains a good overview of the various parts, pieces and options and shows you where exactly MyBatis fits in.
11-
1211
### 이 문서가 더 좋아지도록 도와주세요…
1312

1413
이 문서가 일부 내용을 자세히 다루지 않거나 특정 기능에 대해 설명하지 않을 경우 마이바티스를 공부하는 가장 좋은 방법은 사용자 스스로 그 부분에 대한 문서를 작성하는 것이다!

src/site/zh/markdown/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
title: MyBatis 3 | 简介
2-
author: Clinton Begin,Nan Lei,Dongxu Wang
2+
<meta name="author" content="Clinton Begin" />
3+
<meta name="author" content="Nan Lei" />
4+
<meta name="author" content="Dongxu Wang" />
35

46
## 简介
57

68
### 什么是 MyBatis?
79

810
MyBatis 是一款优秀的持久层框架,它支持自定义 SQL、存储过程以及高级映射。MyBatis 免除了几乎所有的 JDBC 代码以及设置参数和获取结果集的工作。MyBatis 可以通过简单的 XML 或注解来配置和映射原始类型、接口和 Java POJO(Plain Old Java Objects,普通老式 Java 对象)为数据库中的记录。
911

10-
If you are completely new to database access in Java, https://www.marcobehler.com/guides/a-guide-to-accessing-databases-in-java contains a good overview of the various parts, pieces and options and shows you where exactly MyBatis fits in.
11-
1212
### 帮助改进文档...
1313

1414
如果你发现文档有任何的遗漏,或缺少某一个功能点的说明,最好的解决办法是先自己学习,然后为遗漏的部份补上相应的文档。
1515

16-
该文档 Markdown 格式的源码文件可通过项目的 [Git 代码库](https://github.com/mybatis/mybatis-3/tree/master/src/site)来获取。fork该源码库,作出更新,并提交 Pull Request 吧。
16+
该文档 Markdown 格式的源码文件可通过[项目的 Git 代码库](https://github.com/mybatis/mybatis-3/tree/master/src/site)来获取。fork该源码库,作出更新,并提交 Pull Request 吧。
1717

1818
还有其他像你一样的人都需要阅读这份文档,而你,就是这份文档最好的作者。
1919

0 commit comments

Comments
 (0)