ibatis sql maps指导------文献翻译.doc

约20页DOC格式手机打开展开

ibatis sql maps指导------文献翻译,简介这个简短的教程将带领你通过一个典型的sql map演练,教程中的每一个主题的细节部分您都可以在官方网站http://ibatis.apache.org中的sql map开发者指南中找到。准备使用sql mapsql map 架构能应用于设计不好的数据库模型甚至是设计不好的对象模型。尽管如此,您在设计数据库模型和对象...
编号:15-269044大小:85.50K
分类: 论文>外文翻译

内容介绍

此文档由会员 wanli1988go 发布

简介
这个简短的教程将带领你通过一个典型的SQL Map演练,教程中的每一个主题的细节部分您都可以在官方网站http://ibatis.apache.org中的SQL Map开发者指南中找到。
准备使用SQL Map
SQL Map 架构能应用于设计不好的数据库模型甚至是设计不好的对象模型。尽管如此,您在设计数据库模型和对象模型时,还是应该遵循最佳的设计原则。这样,您会获得更好的性能和更简洁清晰的设计方案。
设计最容易开始的地方是分析应用的业务逻辑。分析什么是应用的业务对象,什么是数据模型以及两者之间的关系。作为快速入门第一个例子,我们使用一个简单的 JavaBean Person 类。
Introuction
This brief tutorial will take you through a walkthrough of a typical use of SQL Maps. The details of each of the topics below can be found in the SQL Maps developer guide available from http://ibatis.apache.org
Preparing to Use SQL Maps
The SQL Maps framework is very tolerant of bad database models and even bad object models. Despite this, it is recommended that you use best practices when designing your database (proper normalization) and your object model. By doing so, you will get good performance and a clean design.
The easiest place to start is to analyze what you’re working with. What are your business objects? What are your database tables? How do they relate to each other? For the first example, consider the following simple Person class that conforms to the typical JavaBeans