DBCP工具類和利用toncat管理數據源

DBCP:
代碼體現:
工具類:
public class DBCPUtil {
 private static DataSource dataSource;
 static{
  try {
   //讀取配置文件
   InputStream in = DBCPUtil.class.getClassLoader().getResourceAsStream("dbcpconfig.properties");
   Properties props = new Properties();
   props.load(in);
   //建立數據源對象
   dataSource = BasicDataSourceFactory.createDataSource(props);
  } catch (Exception e) {
   throw new ExceptionInInitializerError("初始化數據源失敗");
  }
 }
 public static Connection getConnection(){
  try {
   return dataSource.getConnection();
  } catch (SQLException e) {
   throw new RuntimeException("從數據源獲取連接失敗");
  }
 }
 public static DataSource getDataSource(){
  return dataSource;
 }
 public static void release(ResultSet rs,Statement stmt,Connection conn){
  if(rs!=null){
   try {
    rs.close();
   } catch (SQLException e) {
    e.printStackTrace();
   }
   rs = null;
  }
  if(stmt!=null){
   try {
    stmt.close();
   } catch (SQLException e) {
    e.printStackTrace();
   }
   stmt = null;
  }
  if(conn!=null){
   try {
    conn.close();
   } catch (SQLException e) {
    e.printStackTrace();
   }
   conn = null;
  }
 }
}java

配置文件:
文件名:dbcpconfig.properties
#鏈接設置
driverClassName=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/day19
username=root
password=sorrymysql

#<!-- 初始化鏈接 -->
initialSize=10sql

#最大鏈接數量
maxActive=50數據庫

#<!-- 最大空閒鏈接 -->
maxIdle=20jsp

#<!-- 最小空閒鏈接 -->
minIdle=5工具

#<!-- 超時等待時間以毫秒爲單位 6000毫秒/1000等於60秒 -->
maxWait=60000url


#JDBC驅動創建鏈接時附帶的鏈接屬性屬性的格式必須爲這樣:[屬性名=property;]
#注意:"user" 與 "password" 兩個屬性會被明確地傳遞,所以這裏不須要包含他們。
connectionProperties=useUnicode=true;characterEncoding=utf8code

#指定由鏈接池所建立的鏈接的自動提交(auto-commit)狀態。
defaultAutoCommit=trueorm

#driver default 指定由鏈接池所建立的鏈接的只讀(read-only)狀態。
#若是沒有設置該值,則「setReadOnly」方法將不被調用。(某些驅動並不支持只讀模式,如:Informix)
defaultReadOnly=xml

#driver default 指定由鏈接池所建立的鏈接的事務級別(TransactionIsolation)。
#可用值爲下列之一:(詳情可見javadoc。)NONE,READ_UNCOMMITTED, READ_COMMITTED, REPEATABLE_READ, SERIALIZABLE
defaultTransactionIsolation=REPEATABLE_READ

C3P0:(優勢:能夠同時配置多個數據庫):
C3P0Util:
public class C3P0Util {
 private static ComboPooledDataSource dataSource = new ComboPooledDataSource();
 
 public static Connection getConnection(){
  try {
   return dataSource.getConnection();
  } catch (SQLException e) {
   throw new RuntimeException("從數據源獲取連接失敗");
  }
 }
 public static DataSource getDataSource(){
  return dataSource;
 }
}
xml配置文件:
<c3p0-config>
 <default-config>
  <property name="driverClass">com.mysql.jdbc.Driver</property>
  <property name="jdbcUrl">jdbc:mysql://localhost:3306/day19</property>
  <property name="user">root</property>
  <property name="password">sorry</property>
  <property name="initialPoolSize">10</property>
  <property name="maxIdleTime">30</property>
  <property name="maxPoolSize">100</property>
  <property name="minPoolSize">10</property>
  <property name="maxStatements">200</property>
 </default-config>
 <named-config name="aa">
  <property name="driverClass">com.mysql.jdbc.Driver</property>
  <property name="jdbcUrl">jdbc:mysql://localhost:3306/day20</property>
  <property name="user">root</property>
  <property name="password">sorry</property>
  <property name="initialPoolSize">10</property>
  <property name="maxIdleTime">30</property>
  <property name="maxPoolSize">100</property>
  <property name="minPoolSize">10</property>
  <property name="maxStatements">200</property>
 </named-config>
</c3p0-config>

利用Tomcat管理數據源
a、拷貝數據庫驅動jar包到Tomcat\lib目錄下
b.在應用的META-INF目錄下創建一個名稱爲context.xml的配置文件
xml文件:
<Context>
 <!-- 配置當前應用的一個資源 -->
 <Resource name="jdbc/day19" auth="Container" type="javax.sql.DataSource"
  username="root" password="sorry" driverClassName="com.mysql.jdbc.Driver"
  url="jdbc:mysql://localhost:3306/day19" maxActive="8" maxIdle="4" />
</Context>

c、啓動Tomcat,數據源就給你建好了
d、在應用中如何獲取數據源
在jsp中:
<%
    Context initCtx = new InitialContext();
    Context envCtx = (Context) initCtx.lookup("java:comp/env");
    DataSource ds = (DataSource)envCtx.lookup("jdbc/day19");

    Connection conn = ds.getConnection();    System.out.println(conn);    conn.close();    %>特別注意:不要在main方法中獲取數據源,獲取不到

相關文章
相關標籤/搜索