各应用服务器下MySQL连接参数配置

//注:以下参数中“localhost”表示连接本机数据库,“test”表示要连接的数据库名称,如要连接其它机子的数据库则将“localhost”、“test”修改成相应的IP和数据库名即可

JBoss5.0下

支持-:

driver name:com.mysql.jdbc.Driver

connectionURL:jdbc:mysql://localhost:3306/test

支持二:

driver name:com.mysql.jdbc.jdbc2.optional.MysqlXADataSource

connectionURL:jdbc:mysql://localhost:3306/test

 

JBoss7.0、websphere下

driver name:com.mysql.jdbc.jdbc2.optional.MysqlXADataSource

connectionURL:jdbc:mysql://localhost:3306/test

 

EAServer、weblogic下

driver name:com.mysql.jdbc.Driver

connectionURL:jdbc:mysql://localhost:3306/test

 

JEUS下:

driver name:com.mysql.jdbc.jdbc2.optional.MysqlConnectionPoolDataSource

connectionURL:jdbc:mysql://localhost:3306/test

你可能感兴趣的:(mysql,服务器,连接配置)