-
Notifications
You must be signed in to change notification settings - Fork 12.9k
/
Copy pathindex.html
122 lines (112 loc) · 6.62 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<!--
| Generated by Apache Maven Doxia Site Renderer 2.0.0 from src/site/markdown/index.md at 02 Jan 2025
| Rendered using Apache Maven Fluido Skin 2.0.1
-->
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="generator" content="Apache Maven Doxia Site Renderer 2.0.0" />
<meta name="author" content="Clinton Begin" />
<title>MyBatis 3 | Introduction – mybatis</title>
<link rel="stylesheet" href="./css/apache-maven-fluido-2.0.1.min.css" />
<link rel="stylesheet" href="./css/site.css" />
<link rel="stylesheet" href="./css/print.css" media="print" />
<script src="./js/apache-maven-fluido-2.0.1.min.js"></script>
</head>
<body>
<div class="container-fluid container-fluid-top">
<header>
<div id="banner">
<div class="pull-left"></div>
<div class="pull-right"><div id="bannerRight"><h1><a href="https://blog.mybatis.org/"><img class="class java.lang.Object" src="../images/mybatis-logo.png" alt="MyBatis logo" /> MyBatis</a></h1></div></div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate">Last Published: 02 Jan 2025<span class="divider">|</span>
</li>
<li id="projectVersion">Version: 3.5.19</li>
</ul>
</div>
</header>
<div class="row-fluid">
<header id="leftColumn" class="span2">
<nav class="well sidebar-nav">
<ul class="nav nav-list">
<li class="nav-header">Reference Documentation</li>
<li class="active"><a>Introduction</a></li>
<li><a href="getting-started.html">Getting Started</a></li>
<li><a href="configuration.html"><span class="icon-chevron-right"></span>Configuration XML</a></li>
<li><a href="sqlmap-xml.html"><span class="icon-chevron-right"></span>Mapper XML Files</a></li>
<li><a href="dynamic-sql.html">Dynamic SQL</a></li>
<li><a href="java-api.html"><span class="icon-chevron-right"></span>Java API</a></li>
<li><a href="statement-builders.html">SQL Builder Class</a></li>
<li><a href="logging.html">Logging</a></li>
<li class="nav-header">Project Documentation</li>
<li><a href="project-info.html"><span class="icon-chevron-down"></span>Project Information</a>
<ul class="nav nav-list">
<li><a href="ci-management.html">CI Management</a></li>
<li><a href="dependencies.html">Dependencies</a></li>
<li><a href="dependency-info.html">Maven Coordinates</a></li>
<li><a href="distribution-management.html">Distribution Management</a></li>
<li class="active"><a>About</a></li>
<li><a href="issue-management.html">Issue Management</a></li>
<li><a href="licenses.html">Licenses</a></li>
<li><a href="mailing-lists.html">Mailing Lists</a></li>
<li><a href="plugin-management.html">Plugin Management</a></li>
<li><a href="plugins.html">Plugins</a></li>
<li><a href="scm.html">Source Code Management</a></li>
<li><a href="summary.html">Summary</a></li>
<li><a href="team.html">Team</a></li>
</ul></li>
<li><a href="project-reports.html"><span class="icon-chevron-right"></span>Project Reports</a></li>
</ul>
</nav>
<div class="well sidebar-nav">
<div id="poweredBy">
<div class="clear"></div>
<div class="clear"></div>
<a href="https://maven.apache.org/" class="builtBy" target="_blank"><img class="builtBy" alt="Built by Maven" src="./images/logos/maven-feather.png" /></a>
</div>
</div>
</header>
<main id="bodyColumn" class="span10">
<section><a id="Avoid_blank_site"></a>
<h1 class="d-none">Avoid blank site</h1>
<section><a id="Introduction"></a>
<h2>Introduction</h2><section><a id="What_is_MyBatis.3F"></a>
<h3>What is MyBatis?</h3>
<p>MyBatis is a first class persistence framework with support for custom SQL, stored procedures and advanced mappings. MyBatis eliminates almost all of the JDBC code and manual setting of parameters and retrieval of results. MyBatis can use simple XML or Annotations for configuration and map primitives, Map interfaces and Java POJOs (Plain Old Java Objects) to database records.</p>
<p>If you are completely new to database access in Java, <a href="https://www.marcobehler.com/guides/a-guide-to-accessing-databases-in-java" class="externalLink">https://www.marcobehler.com/guides/a-guide-to-accessing-databases-in-java</a> contains a good overview of the various parts, pieces and options and shows you where exactly MyBatis fits in.</p>
<p>For tips, news, etc., follow these accounts <a href="https://bsky.app/profile/mybatis.bsky.social" class="externalLink">🦋Bluesky</a> , <a href="https://x.com/MyBatisJava" class="externalLink">X</a> run by <a href="https://bsky.app/profile/alejandro-du.bsky.social" class="externalLink">Alejandro Duarte</a>.</p></section><section><a id="Help_make_this_documentation_better.E2.80.A6"></a>
<h3>Help make this documentation better…</h3>
<p>If you find this documentation lacking in any way, or missing documentation for a feature, then the best thing to do is learn about it and then write the documentation yourself!</p>
<p>Sources of this manual are available in Markdown format at <a href="https://github.com/mybatis/mybatis-3/tree/master/src/site" class="externalLink">project's Git</a>. Fork the repository, update them and send a pull request.</p>
<p>You’re the best author of this documentation, people like you have to read it!</p></section><section><a id="Translations"></a>
<h3>Translations</h3>
<p>Users can read about MyBatis in following translations:</p>
<ul class="i18n">
<li class="en"><a href="./getting-started.html">English</a></li>
<li class="es"><a href="./es/index.html">Español</a></li>
<!-- <li class="fr"><a href="./fr/index.html">Français</a></li> -->
<li class="ja"><a href="./ja/index.html">日本語</a></li>
<li class="ko"><a href="./ko/index.html">한국어</a></li>
<li class="zh"><a href="./zh_CN/index.html">简体中文</a></li>
</ul>
<p>Do you want to read about MyBatis in your own native language? File an issue providing patches with your mother tongue documentation!</p></section></section></section> </main>
</div>
</div>
<hr/>
<footer>
<div class="container-fluid">
<div class="row-fluid">
<p>© 2009–2025
<a href="https://www.mybatis.org/">MyBatis.org</a>
</p>
</div>
</div>
</footer>
</body>
</html>