0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Mybatisの特徴を短く

0
Posted at

Mybatisは

  1. SQL Mapping Frameworkである:JavaコードとSQL(Standard Query Language)をマッピングする
  2. JavaコードからSQL文をXMLファイルに分離して管理
  3. Parameter設定とQuery結果を読み込むコードを削除する
    こうすることによって作成するコードが減り、効率性向上、メンテナンスが容易になる
  4. XML内の特殊文字(≺、≻、&....)は< &gr;に変換して使用するか、特殊文字を含むQueryを
<![CDATA[ 特殊文字 [[>

することで表示される

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?