本文整理汇总了Java中org.apache.ibatis.datasource.pooled.PooledDataSource.setPassword方法的典型用法代码示例。如果您正苦于以下问题:Java PooledDataSource.setPassword方法的具体用法?Java PooledDataSource.setPassword怎么用?Java PooledDataSource.setPassword使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.ibatis.datasource.pooled.PooledDataSource
的用法示例。
在下文中一共展示了PooledDataSource.setPassword方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getMySQLDataSource
import org.apache.ibatis.datasource.pooled.PooledDataSource; //导入方法依赖的package包/类
private DataSource getMySQLDataSource() {
PooledDataSource ds = new PooledDataSource();
ds.setDriver("com.mysql.cj.jdbc.Driver");
ds.setUrl("jdbc:mysql://localhost:3306/db_example");
ds.setUsername("tully");
ds.setPassword("tully");
return ds;
}
示例2: createPooledDataSource
import org.apache.ibatis.datasource.pooled.PooledDataSource; //导入方法依赖的package包/类
public static PooledDataSource createPooledDataSource(String resource) throws IOException {
Properties props = Resources.getResourceAsProperties(resource);
PooledDataSource ds = new PooledDataSource();
ds.setDriver(props.getProperty("driver"));
ds.setUrl(props.getProperty("url"));
ds.setUsername(props.getProperty("username"));
ds.setPassword(props.getProperty("password"));
return ds;
}
示例3: createDataSource
import org.apache.ibatis.datasource.pooled.PooledDataSource; //导入方法依赖的package包/类
public static PooledDataSource createDataSource(Props p) {
String url = p.findVal(db_url);
PooledDataSource ds = new PooledDataSource();
ds.setDriver(p.findVal(db_driver));
ds.setUrl(url);
ds.setUsername(p.findVal(db_user));
ds.setPassword(p.findVal(db_psw));
ds.setPoolMaximumActiveConnections(p.getIntVal(db_maxConnections));
ds.setPoolMaximumIdleConnections(p.getIntVal(db_idleConnections));
return ds;
}
示例4: shouldReconnectWhenServerKilledLeakedConnection
import org.apache.ibatis.datasource.pooled.PooledDataSource; //导入方法依赖的package包/类
@Ignore("See the comments")
@Test
public void shouldReconnectWhenServerKilledLeakedConnection() throws Exception {
// See #748
// Requirements:
// 1. MySQL JDBC driver dependency.
// 2. MySQL server instance with the following.
// - CREATE DATABASE `test`;
// - SET GLOBAL wait_timeout=3;
// 3. Tweak the connection info below.
final String URL = "jdbc:mysql://localhost:3306/test";
final String USERNAME = "admin";
final String PASSWORD = "";
Connection con;
PooledDataSource ds = new PooledDataSource();
ds.setDriver("com.mysql.jdbc.Driver");
ds.setUrl(URL);
ds.setUsername(USERNAME);
ds.setPassword(PASSWORD);
ds.setPoolMaximumActiveConnections(1);
ds.setPoolMaximumIdleConnections(1);
ds.setPoolTimeToWait(1000);
ds.setPoolMaximumCheckoutTime(2000);
ds.setPoolPingEnabled(true);
ds.setPoolPingQuery("select 1");
ds.setDefaultAutoCommit(true);
// MySQL wait_timeout * 1000 or less. (unit:ms)
ds.setPoolPingConnectionsNotUsedFor(1000);
con = ds.getConnection();
exexuteQuery(con);
// Simulate connection leak by not closing.
// con.close();
// Wait for disconnected from mysql...
Thread.sleep(TimeUnit.SECONDS.toMillis(3));
// Should return usable connection.
con = ds.getConnection();
exexuteQuery(con);
con.close();
}
示例5: shouldReconnectWhenServerKilledLeakedConnection
import org.apache.ibatis.datasource.pooled.PooledDataSource; //导入方法依赖的package包/类
@Ignore("See the comments")
@Test
public void shouldReconnectWhenServerKilledLeakedConnection() throws Exception {
// See #748
// Requirements:
// 1. MySQL JDBC driver dependency.
// 2. MySQL server instance with the following.
// - CREATE DATABASE `test`;
// - SET GLOBAL wait_timeout=3;
// 3. Tweak the connection info below.
final String URL = "jdbc:mysql://localhost:3306/test";
final String USERNAME = "admin";
final String PASSWORD = "";
PooledDataSource ds = new PooledDataSource();
ds.setDriver("com.mysql.jdbc.Driver");
ds.setUrl(URL);
ds.setUsername(USERNAME);
ds.setPassword(PASSWORD);
ds.setPoolMaximumActiveConnections(1);
ds.setPoolMaximumIdleConnections(1);
ds.setPoolTimeToWait(1000);
ds.setPoolMaximumCheckoutTime(2000);
ds.setPoolPingEnabled(true);
ds.setPoolPingQuery("select 1");
ds.setDefaultAutoCommit(true);
// MySQL wait_timeout * 1000 or less. (unit:ms)
ds.setPoolPingConnectionsNotUsedFor(1000);
Connection con = ds.getConnection();
exexuteQuery(con);
// Simulate connection leak by not closing.
// con.close();
// Wait for disconnected from mysql...
Thread.sleep(TimeUnit.SECONDS.toMillis(3));
con.close();
// Should return usable connection.
con = ds.getConnection();
exexuteQuery(con);
con.close();
}