c3p0-config.xml

<?xml version="1.0" encoding="gbk"?>

<c3p0-config>
  <default-config>
      <!-- 连接数据库 -->
      <property name="driverClass">com.mysql.jdbc.Driver</property>
      <property name="jdbcUrl">jdbc:mysql:///mydb2</property>
      <property name="user">root</property>
      <property name="password">root</property>

<property name="checkoutTimeout">30000</property>
    <property name="idleConnectionTestPeriod">30</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>
</c3p0-config>

时间: 2024-10-13 02:03:48

c3p0-config.xml的相关文章

Android项目中的config.xml文件 “config.xml”

Android应用程序需要保存一些配置时,可以将这些配置项放置到values/config.xml文件中. 实例分析: <?xml version="1.0" encoding="utf-8"?> <!-- /* ** Copyright 2009, The Android Open Source Project ** ** Licensed under the Apache License, Version 2.0 (the "Lice

MyBatis2:config.xml文件

前言 前一篇文章,讲了MyBatis入门,讲到了MyBatis有两个基本的配置文件,一个用来配置环境信息,一个用来写SQL语句.前者我把它命名为config.xml,config.xml的内容是: <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "htt

magento url rewrite using config.xml

magento url rewrite using config.xml 2012-08-03 14:34:22|  分类: magento|举报|字号 订阅 郁闷了两天啊 http://127.0.0.1/magento/sitemap/index/attr/code/size/value/26 这样的地址太复杂了 想简便 写法 通过正则表达是 改写就ok了 哈哈 <rewrite>   <sitemap>    <from><![CDATA[#^/([A-Za

Cordova 3.x 基础(5) -- 配置文件config.xml

原文:http://rensanning.iteye.com/blog/2019331 首先要注意的是:从3.3版本以后已经把www/config.xml移动到了根目录下. 在config.xml中定义的东西应该适应所有平台.在build工程的是时候,会看到“Generating config.xml from defaults for platform "android"”这样的字样,他会生成各个平台的config.xml. 生成的文件: Android:MyProject/plat

config.xml

ASP.NET应用程序的配置信息都存放于Web.config配置文件中,Web.config配置文件是基于XML格式的文件类型,由于XML文件的可伸缩性,使得ASP.NET应用配置变得灵活.高效.容易实现.同时,ASP.NET不允许外部用户直接通过URL请求访问Web.config,以提高应用程序的安全性. 1.Web.config配置文件的优点 Web.config配置文件使得ASP.NET应用程序的配置变得灵活.高效和容易实现,同时Web.config配置文件还为ASP.NET应用提供了可扩

class path resource [config.xml] cannot be opened because it does not exist

初学Spring在用Resource rs=new ClassPathResource("applicationContext.xml");时老是遇到这个错误.后来发现用ApplicationContext ctx=new  FileSystemXmlApplicationContext("WebContent/WEB-INF/applicationContext.xml"):可以解决这个问题.仔细研究了下:之所以我用ClassPathResource中找不到app

c3p0 config

c3p0-config.xml<?xml version="1.0" encoding="UTF-8"?> <c3p0-config> <default-config> <property name="jdbcUrl">jdbc:mysql://139.129.49.118:3306/bookstore</property> <property name="driverC

解析ASP,NET MVC 中 web.config XML文件 取出数据库类型

/// <summary> /// 解析web.config 查询dbType类型 /// </summary> private static void SetDBType() { #region 解析web.config 查询dbType类型 string strPath = HttpContext.Current.Server.MapPath("/") + "Web.config"; XmlDocument doc = new XmlDo

winform App.Config XML文件的读取和修改

模板图 后台代码: 用XMLDocument方法来实现 private void ServerDialog_Load(object sender, EventArgs e) { //txtServerIP.Text= ConfigurationManager.AppSettings["PowerServerIP"]; //txtPort.Text = ConfigurationManager.AppSettings["PowerServerPort"]; try {

Translate this app.config xml to code? (WCF) z

http://stackoverflow.com/questions/730693/translate-this-app-config-xml-to-code-wcf <system.serviceModel> <bindings> <basicHttpBinding> <binding name="MyService" closeTimeout="00:01:00" openTimeout="00:01:00&q