Raible's Wiki

Raible Designs
Wiki Home
News
Recent Changes

AppFuse

Homepage
  - Korean
  - Chinese
  - Italian
  - Japanese

QuickStart Guide
  - Chinese
  - French
  - German
  - Italian
  - Korean
  - Portuguese
  - Spanish
  - Japanese

User Guide
  - Korean
  - Chinese

Tutorials
  - Chinese
  - German
  - Italian
  - Korean
  - Portuguese
  - Spanish

FAQ
  - Korean

Latest Downloads

Other Applications

Struts Resume
Security Example
Struts Menu

Set your name in
UserPreferences


Referenced by
...nobody




JSPWiki v2.2.33

[RSS]


Hide Menu

CreateDAOiBATIS_ko


Difference between version 2 and version 1:

At line 1 changed 1 line.
__Part I:__ [Creating iBATIS DAOs and Objects in AppFuse|CreateDAO] - A HowTo for creating Java Objects (that represent tables) and [iBATIS|http://ibatis.apache.org] DAO classes to persist those objects in the database.
__Part I:__ [AppFuse에서 iBATIS DAO와 객체 생성하기|CreateDAO_ko] - 데이터베이스에서 객체를 지속하기 위해 Java객체(테이블을 표시하는)와 [iBATIS|http://ibatis.apache.org] DAO 클래스를 생성하기 위한 방법.
At line 3 changed 2 lines.
!!About this tutorial
This tutorial will show you how to create a new table in the database, and how the create Java code to access this table.
!! 이 튜토리얼에 대해
이 튜토리얼은 데이터베이스에서 새로운 테이블을 생성하고 이 테이블에 접근하기 위한 자바코드를 생성하는 방법을 보여줄것이다.
At line 6 changed 1 line.
You will create an object and then some more classes to persist (save/retrieve/delete) that object from the database. In Java speak, this object is called a Plain Old Java Object (a.k.a. a [POJO|http://forum.java.sun.com/thread.jsp?forum=92&thread=425300&tstart=0&trange=15]). This object basically represents a database table. The ''other classes'' will be:
당신은 데이터베이스로부터 객체를 지속(save/retrieve/delete)하기 위해 객체와 몇가지 클래스를 생성할것이다. 자바쪽에서는 이 객체를 Plain Old Java Object (a.k.a. a [POJO|http://forum.java.sun.com/thread.jsp?forum=92&thread=425300&tstart=0&trange=15])라고 부른다. 이 객체는 기본적으로 데이터베이스 테이블을 표시한다. "다른 클래스"는 다음이 될것이다.
At line 8 changed 2 lines.
* A Data Access Object (a.k.a. a [DAO|http://java.sun.com/blueprints/patterns/DAO.html]), an [Interface|http://java.sun.com/docs/books/tutorial/java/concepts/interface.html] and an iBATIS Implementation
* A [JUnit|http://www.junit.org] class to test the DAO is working
* 데이터 접근 객체 (a.k.a. a [DAO|http://java.sun.com/blueprints/patterns/DAO.html]), [Interface|http://java.sun.com/docs/books/tutorial/java/concepts/interface.html] 그리고 iBATIS구현물
* DAO를 테스트하기 위한 [JUnit|http://www.junit.org] 클래스

Back to CreateDAOiBATIS_ko, or to the Page History.