mysql dbmanager_EasyMySQL

EasyMySQL

一个简化的 mysql 数据库操作库。。。

A simplified toolkit for mysql...

最终可用版本在 releases 文件夹中

the final version is in releases

项目发布版本分为两种,一种是不带依赖的 jar 包,占用空间很小;一种是带了全部依赖的 jar 包,方便引用。

it has two releases version: one is jar with no dependency, the other one is jar with dependencies

下面演示了结合 AutoMySQL 小框架的查询操作:

if you use AutoMySQL and this jar:

AutoMySQL 请点击: AutoMySQL

(代码中的 com.fish.Book.java 在源码中有提供)

import com.fish.core.DBManager;

import com.fish.core.DBWorker;

import java.io.File;

public class Test

{

public static void main(String[] args)

{

// set config...

DBManager.init(new File("DB.properties"));

// auto commit ==> default is false

//DBManager.setAutoCommit(false);

// connect to database...

DBWorker dbWorker = DBManager.getDBWorker();

com.fish.Book book = new com.fish.Book();

book.setName("奇异人生");

book.setPrice(68);

// insert a new book in database...

//dbWorker.insert(book);

// put whole table in a file...

//dbWorker.putTableInFile("book", "Z:/book.txt");

// query a book...

book = dbWorker.query(book, com.fish.Book.class);

System.out.println(book);

List books = new ArrayList<>();

books.add(new Book("蒙太奇手法", 129));

books.add(new Book("音乐素养与教养", 72));

books.add(new Book("中国为什么这么强大", 999));

books.add(new Book("看世界", 69));

books.add(new Book("读者", 12));

// insert many books...

dbWorker.insertAll(books.toArray());

// batch

dbWorker.workBatch(new String[] {

"INSERT INTO book(name, price) VALUES('论三国', 23), ('孙子兵法', 24);",

"INSERT INTO book(name, price) VALUE('世界之大宇宙之小', 89);"

});

// release resources and commit transaction...

dbWorker.sleep();

}

}

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! bug !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

2018-2-23:

使用 DBManager.update(File) 方法进行更新配置文件时,由于 DBWorker 中的数据是静态的,也就是一加载这个类就决定好了,所以更新会失败,此时需要重新启动项目。。。这个问题已经修复!

if you use DBManager.update(File) to update infomaton of database, you will get a failed infomation. The reason is the connection in DBWorker is static, so you cant't change it after "new" it... Don't wrong, this bug has been fixed!

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! update !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

2018-5-26:

抛弃了原本自己写的 log 类,转为使用 commons-logging 记录日志,目前实现类为 java.util.logging。

(My own log class is low-level... So I replace it with commons-logging, now its implement is java.util.logging)

将项目转为了 maven 项目,方便拓展。

(I convert this project to maven project, for extending)

项目发布版本分为两种,一种是不带依赖的 jar 包,占用空间很小;一种是带了全部依赖的 jar 包,方便引用。

(now it has two releases version: one is jar with no dependency, the other one is jar with dependencies)

2018-5-22:

新增了 workBatch(String[] sqls) 方法,现在可以批处理 sql 语句

(add a new method called workBatch(String[] sqls), now you can 'batch'...)

新增了 insertAll(object[] objects) 方法,现在可以一次插入多个对象

(add a new method called insertAll(object[] objects), now you can insert many objects onetime)

改进了 javadoc,以前写的 doc 丑的一比,现在规整多了。。。

(javadoc is good look, yeah, it is cuter :) ...)

2018-4-26:

修复了一个查询的隐藏 bug。

(fix a hidden bug...)

新增了一个返回对象集合的方法,现在可以一次获取多个 bean 了。

(add a new method which can get many beans...)

2018-3-29:

这是一次重构改进!结合 DPCP 进行完善功能!

加入了数据库连接池的功能,主要是 DPCP 连接池,所以配置文件也沿用了它的

彻底改进了整个框架的结构:

由原来的静态单例变成现在的管理单例加操作多例的结构,因此在并发模式下有了质的改变

由原来的单个连接完成全部工作变成由连接池接管所有连接工作

删除了很多冗余代码以及新增了一些功能

完善了日志输出功能,并且对异常的处理更加细致

2018-3-21:

这是一次大整合大更新!结合 AutoMySQL 进行完善功能!

整个用法和方法命名有所改进,整体更实用!

加入了事务的处理,默认自动提交事务,也可进行设置!

修复了之前插入的问题,现在的插入可以直接传入一个 orm 实体类对象,底层自动转化为数据表数据!

由于加入了 AutoMySQL 框架,查询返回值可以直接返回实体类对象,而且无需强制类型转换!

优化了代码的质量以及 javadoc 的质量!

突然发现夸自己的作品也是一件很累的事情啊 手动滑稽:)

this version is perfect! hahaha, at lease before the next version!

2018-3-11:

修改了查询的方法名,使得意思更加通熟易懂。

修正部分代码质量

update some function's name, such as query...

fix some codes

2018-3-10:

加入了两个新的查询方法,返回 List 类型,之前的返回值为 List ,如果要操作返回的数据是比较麻烦的,而在 Map 中操作数据只需要键值即可,在这个返回的 Map 中,key值就是数据库中的列名。

add two functions for querying, it returns List type, so you can get the exact data you want easily, because all the things you need is Key(the column of table is the key), and this is complex in the old version!

2018-2-24:

加入了英文注释

add some English introduction

修改了部分功能:比如 work 可以手动指定文件,加入了 wakeUp 和 sleep 进行资源的管理。

=============================================================

params.md

url

传递给JDBC驱动的用于建立连接的url

ex: jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8

username

传递给JDBC驱动用于建立连接的用户名

ex: root

password

传递给JDBC驱动用于建立连接的密码

ex: xxx

maxActive

最大活动连接数:连接池在同一时间能够分配的最大活动连接的数量,如果设置为非正数,则表示不受限制

ex: 30

maxIdle

最大空闲连接数:连接池中容许保持最大空闲状态的最大链接数量,操作的空闲连接将被释放,如果设置为负数表示不受限制

ex: 10

minIdle

最小空闲连接数:连接池中容许保持最小空闲状态的最大链接数量,操作的空闲连接将被释放,

如果设置为负数表示不受限制

ex: 1

maxWait

最大等待时间:当没有可用连接时,连接池等待连接被归还的最大(以毫秒计数),超过时间则抛出异常,

如果设置为-1则表示无限等待

ex: 1000

initialSize

初始连接:池启动时创建的连接数量

ex: 1

logAbandoned

连接被泄露时是否打印

ex: true

removeAbandoned

是否自动回收超时连接

ex: true

removeAbandoned Timeout

超时时间(以秒数为单位)

ex: 10

timeBetweenEvictionRunsMillis

在空闲连接回收器线程运行期间休眠的时间值,以毫秒为单位

ex: 1000

numTestsPerEvictionRun

在每次空闲连接回收器线程(如果有)运行时检查的连接数量

ex: 10

minEvictableIdleTimeMillis

连接在池中保持空闲而不被空闲连接回收器线程

ex: 10000

=============================================================

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值