Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Three configuration modes of c3p0

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

C3p0 is divided into three types, namely

1. Set each configuration item individually through the setters method

2. A c3p0.properties file is provided under the classpath

3. A c3p0-config.xml file is provided under the classpath

1. Set each configuration item individually through the setters method

This method is the most complicated, and the form is generally as follows:

ComboPooledDataSource cpds = new ComboPooledDataSource(); cpds.setDriverClass("com.mysql.jdbc.Driver"); cpds.setJdbcUrl("jdbc:mysql:///users"); cpds.setUser("root"); cpds.setPassword("123456");

2. A c3p0.properties file is provided under the classpath

The name of the file must be c3p0.properties, and the format of the configuration item in it is:

c3p0.driverClass=com.mysql.jdbc.Driver c3p0.jdbcUrl=jdbc:mysql:///users c3p0.user=root c3p0.password=123456

3. A c3p0-config.xml file is provided under the classpath

Here is a configuration template:

root 123456 com.mysql.jdbc.Driver jdbc:mysql:///users 10 30 100 10 root 123456 com.mysql.jdbc.Driver jdbc:mysql:///users 10 30 100 10

If you want to use default-config initialize the data source in the same way as the second, if you want to initialize the data source using the configuration in named-config, just use a ComboPooledDataSource constructor with parameters

ComboPooledDataSource cpds = new ComboPooledDataSource("myApp");

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report