手写框架探险系列-dao重新设计

之前自己做的dao

改进:

  • 当初写的仅仅只是支持了jndi的操作,没有对jta的支持,同时需要在业务代码中显式的编码。

public interface SqlSession {
    int[] batch(String configId, Object[][] params) throws SQLException;

    int[] batch(SqlConfig config, Object[][] params) throws SQLException;

    int[] batch(SqlConfig config, List<? extends Map> parameter)
            throws SQLException;

    int[] batch0(SqlConfig config, List<?> parameter) throws SQLException;

    int[] batch0(String configId, List<?> parameter) throws SQLException;

    int[] batch(String configId, List<? extends Map> parameter)
            throws SQLException;

    //
    int update(SqlConfig config, Map parameter) throws SQLException;

    int update(SqlConfig config, Object parameter) throws SQLException;

    int update(String configId, Object parameter) throws SQLException;

    int update(String configId, Map parameter) throws SQLException;

    // //
    // 这里需要使用
    // ////////////////
    Future<ResultSet> selectResultSet(SqlConfig config, Map parameter)
            throws SQLException;

    Future<ResultSet> selectResultSet(SqlConfig config, Object parameter)
            throws SQLException;

    Future<ResultSet> selectResultSet(String configId, Object parameter)
            throws SQLException;

    Future<ResultSet> selectResultSet(String configId, Map parameter)
            throws SQLException;

    <T> Future<T> select(SqlConfig config, Map parameter) throws SQLException;

    <T> Future<T> select(SqlConfig config, Object parameter)
            throws SQLException;

    <T> Future<T> select(String configId, Object parameter) throws SQLException;

    <T> Future<T> select(String configId, Map parameter) throws SQLException;

    /**
     * 这里没有SqlConfig,就利用配置里面的默认的SqlConfig, 如对应的数据源,事务级别,事务传播类型。 这里可以看做是声明式的配置管理。
     * @param config该配置写在代码里面就是强制性配置的。
     * @param parameter
     * @return
     */
    Future<Value> selectValue(SqlConfig config, Map parameter)
            throws SQLException;

    Future<Value> selectValue(SqlConfig config, Object parameter)
            throws SQLException;

    Future<Value> selectValue(String configId, Object parameter)
            throws SQLException;

    Future<Value> selectValue(String configId, Map parameter)
            throws SQLException;

    Future<Record> selectRecord(SqlConfig config, Map parameter)
            throws SQLException;

    Future<Record> selectRecord(SqlConfig config, Object parameter)
            throws SQLException;

    Future<Record> selectRecord(String configId, Object parameter)
            throws SQLException;

    Future<Record> selectRecord(String configId, Map parameter)
            throws SQLException;

    Future<TableData> selectTableData(SqlConfig config, Map parameter)
            throws SQLException;

    Future<TableData> selectTableData(SqlConfig config, Object parameter)
            throws SQLException;

    Future<TableData> selectTableData(String configId, Object parameter)
            throws SQLException;

    Future<TableData> selectTableData(String configId, Map parameter)
            throws SQLException;

    Future<ColumnSet> selectColumnSet(SqlConfig config, Map parameter)
            throws SQLException;

    Future<ColumnSet> selectColumnSet(SqlConfig config, Object parameter)
            throws SQLException;

    Future<ColumnSet> selectColumnSet(String configId, Object parameter)
            throws SQLException;

    Future<ColumnSet> selectColumnSet(String configId, Map parameter)
            throws SQLException;
}
public interface SqlConfig {
    public static final String SQL_DEFAULT_CONFIG = "dao-SqlDefaultConfig";
    String SQL = "SQL"; 
    String RESULT_SET_HANDLER = "org.apache.commons.dbutils.ResultSetHandler<T>";
    String IS_FUTURE = "Future";
    String COLUMN_NAME = "columnName";
    String COLUMN_MAX = "columnMax";
    String ROW_INDEXS = "RowIndexs"; // 第几行的数据可以被放到list里面。
    String CONNECTION = "java.sql.Connection";
    /**
     * 用于设置输入的map或bean对应设置值
     * stmt.setObject(i + 1, object);
     */
    String FILL_STATEMENT_KEYS = "fillStatementKeys";
    SqlConfig setConfig(String key , Object value);
    <T> T getConfig(String key);
}
  • 没有SqlConfig就是在配置里的声明式配置。有SqlConfig就是强制性配置。
  • 也就是说调用方只需要知道:sql语句的标识,参数,配置,就可以返回最后的结果集,具体的什么结果集就需要用户来指定了。
    至于是具体怎么执行的(jdbc,jpa,jdni,mycat,jta,分布式事务。。。),一些细节全部由配置来指定和实现。
  • 指定对应的方法名标识来进行反射,从而使得用户不知道具体实现是sql还是nosql、newSql。也就是说只要可以符合这种封装的过程就可以了,我们也就可以把参数的设置和结果集的公共部分给提取出来。
    这样提取了代码,性能肯定不好。
  • 注意的是,这里只是对sql的实现,nosql各种客户端的api不同,需要自己实现。
  • 同时利用Future模式,实现dao层查询的多线程。当然也是可以配置是不使用的

整合Derby

<dependency>
            <groupId>org.apache.derby</groupId>
            <artifactId>derby</artifactId>
</dependency>

public class DerbyTest {
     private static String driver = "org.apache.derby.jdbc.EmbeddedDriver";
        private static String protocol = "jdbc:derby:db3;create=true"; // 在工程目录下创建数据库
        // private static String protocol = "jdbc:derby:db/db3;create=true";    //在工程目录下db目录中创建数据库
        // private static String protocol = "jdbc:derby:D:/mydbs/db3;create=true";    //在D:/mydbs/目录下创建数据库

        public static void main(String[] args) {
            try {
                Class.forName(driver).newInstance();
                System.out.println("Loaded the appropriate driver");
                Connection conn = DriverManager.getConnection(protocol);
                Statement stmt = conn.createStatement();
                stmt.executeUpdate("create table stu(id int not null generated by default as identity,stuname varchar(20),email varchar(30))");

                for (String str : "one,two,three,four,five".split(",")) {
                    String sql = "insert into stu(stuname,email) values('" + str + "','" + str + "@test.com')";
                    System.out.println(sql);
                    stmt.addBatch(sql);
                }
                stmt.executeBatch();
                System.out.println("insert over");
                conn.commit();
                while(true){
                    Thread.sleep(10000);
                } 
//              stmt.close();
//              conn.close();

            } catch (Exception e) {
                e.printStackTrace();
            }
        }
}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,039评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,223评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,916评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,009评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,030评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,011评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,934评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,754评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,202评论 1 309
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,433评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,590评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,321评论 5 342
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,917评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,568评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,738评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,583评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,482评论 2 352

推荐阅读更多精彩内容