- 浏览: 837 次
- 性别:
- 来自: 上海
最近访客 更多访客>>
最新评论
-
yangyi:
多数据源没有问题,统一入口更没有问题,有问题的是数据库的优点变 ...
一个支持双数据库的DB连接池 -
yunzhu:
测试不能证明无错
一个支持双数据库的DB连接池 -
evanzzy:
Spring本身可以支持多数据源的,直接用就可以了
一个支持双数据库的DB连接池 -
吃西瓜西瓜西瓜:
好像是出了点毛病=..=
一个支持双数据库的DB连接池 -
吃西瓜西瓜西瓜:
=..= 有~有~这等bug... 好奇怪啊.. 我测咋没事 ...
一个支持双数据库的DB连接池
文章列表
可以配2个不同的数据库, 10000000次8秒种
public class text
{
public static void main(String[] args) throws SQLException
{
long start2 = System.currentTimeMillis();
Connection conn = null;
for(int i = 1; i < 10000000; i++)
{
conn = DB.getConn(1);
conn.close();
}
System.out.println("经过1 ...