文章列表
摘要:这样配置主要目的是使用ibatis操作数据库,实体对象映射到表的过程通过hibernate的annotation来完成。
第一步:准备数据库连接参数
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/test1?useUnicode=true&characterEncoding=UTF-8
jdbc.username=root
jdbc.password=root
hibernate.dialect=org.hibernate.dialect.MySQLDial ...
1、Predicate是Commons Collections中定义的一个接口。具体
org.apache.commons.collections.Predicate;
该接口的源代码如下:
package org.apache.commons.collections;
/**
* Defines a functor interface implemented by classes that perform a predicate
* test on an object.
...