8

我正在使用 Java 编写一个 red5 应用程序,并且我正在使用 c3p0 进行数据库交互。

似乎在我的 MySQL 服务器中的连接超时后,我的应用程序停止使用配置 autoreconnect=true 的建议。

我该怎么做?

这是我用来创建数据源的函数:

private ComboPooledDataSource _createDataSource() {
    Properties props = new Properties();
    // Looks for the file 'database.properties' in {TOMCAT_HOME}\webapps\{RED5_HOME}\WEB-INF\
    try {
        FileInputStream in = new FileInputStream(System.getProperty("red5.config_root") + "/database.properties");
        props.load(in);
        in.close();
    } catch (IOException ex) {
        log.error("message: {}", ex.getMessage());
        log.error("stack trace: " + ExceptionUtils.getFullStackTrace(ex));
        return null;
    }

    // It will load the driver String from properties
    String drivers = props.getProperty("jdbc.drivers");
    String url = props.getProperty("jdbc.url");
    String username = props.getProperty("jdbc.username");
    String password = props.getProperty("jdbc.password");

    ComboPooledDataSource cpds = new ComboPooledDataSource();
    try {
        cpds.setDriverClass(drivers);
    } catch (PropertyVetoException ex) {
        log.error("message: {}", ex.getMessage());
        log.error("stack trace: " + ExceptionUtils.getFullStackTrace(ex));
        return null;
    }

    cpds.setJdbcUrl(url);
    cpds.setUser(username);
    cpds.setPassword(password);
    cpds.setMaxStatements(180);

    return cpds;
}
4

2 回答 2

6

创建一个c3p0.properties必须位于类路径根目录中的文件:

# c3p0.properties
c3p0.testConnectionOnCheckout=true

有关更多文档,请参阅

这篇文章也可能会有所帮助。

于 2010-08-18T11:28:36.030 回答
2

属性 autoreconnect 不是 C3p0 对象的一部分要使用 C3P0 池,建议配置其他选项(如testConnectionOnCheckout)并使用工厂。

您在此处获得所有 C3p0 信息和示例http://www.mchange.com/projects/c3p0/index.html

您可以使用外部属性文件,或通过代码添加:例如如何使用数据源创建自定义池数据源并添加自定义选项(C3p0 文档网址中的更多示例)

// Your datasource fetched from the properties file
DataSource ds_unpooled = DataSources.unpooledDataSource("url", "user", "password");


// Custom properties to add to the Source
// See http://www.mchange.com/projects/c3p0/index.html#configuration_properties                           

Map overrides = new HashMap();
overrides.put("maxStatements", "200");         //Stringified property values work
overrides.put("maxPoolSize", new Integer(50)); //"boxed primitives" also work

// Your pooled datasource with all new properties
ds_pooled = DataSources.pooledDataSource( ds_unpooled, overrides ); 
于 2010-08-18T11:33:11.127 回答