File tree Expand file tree Collapse file tree 5 files changed +110
-13
lines changed Expand file tree Collapse file tree 5 files changed +110
-13
lines changed Original file line number Diff line number Diff line change 28
28
29
29
<body >
30
30
<section name =" Primeros pasos" >
31
+
32
+
33
+ <subsection name =" Instalación" >
34
+ <p >
35
+ Para usar MyBatis sólo tienes que incluir el fichero
36
+ <code >
37
+ mybatis-x.x.x.jar
38
+ </code >
39
+ en el classpath.
40
+ </p >
41
+ <p >
42
+ Si usas Maven añade esta dependencia en tu pom.xml:
43
+ </p >
44
+ <source ><![CDATA[
45
+ <dependency>
46
+ <groupId>org.mybatis</groupId>
47
+ <artifactId>mybatis</artifactId>
48
+ <version>x.x.x</version>
49
+ </dependency>]]> </source >
50
+ </subsection >
51
+
52
+ <subsection name =" Cómo crear un SqlSessionFactory a partir de XML" >
53
+
31
54
<p >
32
55
Una aplicación que usa MyBatis debe utilizar una instancia de
33
56
SqlSessionFactory. Se puede obtener una instancia de
37
60
de configuración XML o de una
38
61
instancia personalizada de la clase Configuration.
39
62
</p >
40
-
41
- <subsection name =" Cómo crear un SqlSessionFactory a partir de XML" >
42
63
<p >
43
64
Crear una instancia SqlSessionFactory desde un fichero xml es muy
44
65
sencillo. Se recomienda usar un
Original file line number Diff line number Diff line change 28
28
29
29
<body >
30
30
<section name =" スタートガイド" >
31
+
32
+ <subsection name =" Installation" >
31
33
<p >
32
- MyBatis アプリケーションは、SqlSessionFactory のインスタンスを中心に構成されています。<br />
33
- SqlSessionFactory のインスタンスは、SqlSessionFactoryBuilder を使って取得することができます。
34
- SqlSessionFactoryBuilder が SqlSessionFactory を生成する際の設定は、XML 形式の設定ファイルを読み込むか、独自に用意した Configuration クラスのインスタンスを渡すことで行います。
34
+ To use the MyBatis you just need to include the
35
+ <code >
36
+ mybatis-x.x.x.jar
37
+ </code >
38
+ file in the classpath.
35
39
</p >
36
-
40
+ <p >
41
+ If you are using Maven just add the following dependency to your pom.xml:
42
+ </p >
43
+ <source ><![CDATA[
44
+ <dependency>
45
+ <groupId>org.mybatis</groupId>
46
+ <artifactId>mybatis</artifactId>
47
+ <version>x.x.x</version>
48
+ </dependency>]]> </source >
49
+ </subsection >
50
+
37
51
<subsection name =" XML 形式の設定ファイルを使って SqlSessionFactory を生成する" >
52
+ <p >
53
+ MyBatis アプリケーションは、SqlSessionFactory のインスタンスを中心に構成されています。<br />
54
+ SqlSessionFactory のインスタンスは、SqlSessionFactoryBuilder を使って取得することができます。
55
+ SqlSessionFactoryBuilder が SqlSessionFactory を生成する際の設定は、XML 形式の設定ファイルを読み込むか、独自に用意した Configuration クラスのインスタンスを渡すことで行います。
56
+ </p >
38
57
<p >
39
58
XML 形式の設定ファイルを使って SqlSessionFactory を生成するのはとても簡単です。<br />
40
59
この設定ファイルはクラスパスに置くことが推奨されますが、ファイルパスや file:// 形式の URL 文字列から生成した
Original file line number Diff line number Diff line change 28
28
29
29
<body >
30
30
<section name =" 시작하기" >
31
+
32
+ <subsection name =" Installation" >
33
+ <p >
34
+ To use the MyBatis you just need to include the
35
+ <code >
36
+ mybatis-x.x.x.jar
37
+ </code >
38
+ file in the classpath.
39
+ </p >
40
+ <p >
41
+ If you are using Maven just add the following dependency to your pom.xml:
42
+ </p >
43
+ <source ><![CDATA[
44
+ <dependency>
45
+ <groupId>org.mybatis</groupId>
46
+ <artifactId>mybatis</artifactId>
47
+ <version>x.x.x</version>
48
+ </dependency>]]> </source >
49
+ </subsection >
50
+
51
+ <subsection name =" XML 에서 SqlSessionFactory 빌드하기" >
31
52
<p >모든 MyBatis 애플리케이션은 SqlSessionFactory 인스턴스를 사용한다. SqlSessionFactory 인스턴스는
32
53
SqlSessionFactoryBuilder 를 사용하여 만들수 있다. SqlSessionFactoryBuilder 는 XML 설정파일에서 SqlSessionFactory
33
54
인스턴스를 빌드할 수 있다.
34
- </p >
35
-
36
- <subsection name =" XML 에서 SqlSessionFactory 빌드하기" >
55
+ </p >
37
56
<p >XML 파일에서 SqlSessionFactory 인스턴스를 빌드하는 것은 매우 간단한다. 설정을 위해 클래스패스 자원을 사용하는 것을
38
57
추천하나, 파일 경로나 file:// URL 로부터 만들어진 InputStream 인스턴스를 사용할 수도 있다. MyBatis 는 클래스패스와 다른
39
58
위치에서 자원을 로드하는 것으로 좀더 쉽게 해주는 Resources 라는 유틸성 클래스를 가지고 있다.</p >
Original file line number Diff line number Diff line change 27
27
28
28
<body >
29
29
<section name =" Getting started" >
30
+
31
+ <subsection name =" Installation" >
32
+ <p >
33
+ To use the MyBatis you just need to include the
34
+ <code >
35
+ mybatis-x.x.x.jar
36
+ </code >
37
+ file in the classpath.
38
+ </p >
39
+ <p >
40
+ If you are using Maven just add the following dependency to your pom.xml:
41
+ </p >
42
+ <source ><![CDATA[
43
+ <dependency>
44
+ <groupId>org.mybatis</groupId>
45
+ <artifactId>mybatis</artifactId>
46
+ <version>x.x.x</version>
47
+ </dependency>]]> </source >
48
+ </subsection >
49
+
50
+ <subsection name =" Building SqlSessionFactory from XML" >
30
51
<p >
31
52
Every MyBatis application centers around an instance of
32
53
SqlSessionFactory. A SqlSessionFactory instance can be acquired by
33
54
using the SqlSessionFactoryBuilder. SqlSessionFactoryBuilder can
34
55
build a SqlSessionFactory instance from an XML configuration file,
35
56
of from a custom prepared instance of the Configuration class.
36
57
</p >
37
-
38
- <subsection name =" Building SqlSessionFactory from XML" >
39
58
<p >
40
59
Building a SqlSessionFactory instance from an XML file is very
41
60
simple. It is recommended that you use a classpath resource for
Original file line number Diff line number Diff line change 28
28
29
29
<body >
30
30
<section name =" 入门" >
31
+
32
+ <subsection name =" Installation" >
33
+ <p >
34
+ To use the MyBatis you just need to include the
35
+ <code >
36
+ mybatis-x.x.x.jar
37
+ </code >
38
+ file in the classpath.
39
+ </p >
40
+ <p >
41
+ If you are using Maven just add the following dependency to your pom.xml:
42
+ </p >
43
+ <source ><![CDATA[
44
+ <dependency>
45
+ <groupId>org.mybatis</groupId>
46
+ <artifactId>mybatis</artifactId>
47
+ <version>x.x.x</version>
48
+ </dependency>]]> </source >
49
+ </subsection >
50
+
51
+ <subsection name =" 从 XML 中构建 SqlSessionFactory" >
31
52
<p >
32
53
每 一 个 MyBatis 的 应 用 程 序 都 以 一 个 SqlSessionFactory 对 象 的 实 例 为 核 心 。
33
54
SqlSessionFactory 对 象 的 实 例 可 以 通 过 SqlSessionFactoryBuilder 对 象 来 获 得 。
34
55
SqlSessionFactoryBuilder 对象可以从 XML 配置文件,或从 Configuration 类的习惯准备的实
35
56
例中构建 SqlSessionFactory 对象。
36
57
</p >
37
-
38
- <subsection name =" 从 XML 中构建 SqlSessionFactory" >
39
58
<p >
40
59
从 XML 文件中构建 SqlSessionFactory 的实例非常简单。这里建议你使用类路径下的资
41
60
源文件来配置,但是你可以使用任意的 Reader 实例,这个实例包括由文字形式的文件路径
You can’t perform that action at this time.
0 commit comments