- 浏览: 20080 次
- 性别:
- 来自: 深圳
最新评论
文章列表
转:http://hi.baidu.com/leolance/item/9b7d9c4255d80b13896d1083
1、MongoDB
MongoDB是一款开源,高性能,可扩展,无模式,面向文档(与JSON类似的数据模式)的数据库,它为时下最流行的编程语言提供了驱动,如
PHP,Python,Perl,Ruby,JavaScript,C++等,支持全文索引,自动分片,跨LAN或WAN扩展,采用Key/Value方
式存储数据。MongoDB服务端可运行在Linux、Windows或OS
X平台,支持32位和64位应用。世界上最大的单词收录网站Wordn ...
【转:http://blog.163.com/wp_2002wp/blog/static/3147225220123521037196/ 】
<resultMap type="XX" id="XXMap">
<id property="id" column="colid"/>
<id property="name" column="colname"/>
<c ...
Pre-Requisites
For this tutorial I am using:
IDE: Eclipse
(you can use your favorite one)
DataBase: MySQL
Libs/jars: Mybatis
, MySQL
conector and JUnit
(for testing)
This is how your project should look like:
Sample Database
Please run the script into your database
before gettin ...
List list = new ArrayList();
Map map1 = new HashMap();
......
list.add(map1);
<c:forEach var="module" items="${list}" varStatus="status">
<tr onClick='showindex(this);' <c:if test="${status.index % 2 == 0}">class="CommonListTableEve ...
在mybatis select标签配置
<if test="orderBy!=null">
<foreach collection="orderBy" item="order" open="order by " separator="," close=" ">
#{order}
</foreach>
<if test="orderDe ...