44 lines
1.7 KiB
XML
44 lines
1.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE beans PUBLIC
|
|
"-//SPRING//DTD BEAN//EN"
|
|
"http://www.springframework.org/dtd/spring-beans.dtd">
|
|
|
|
<!--
|
|
Copyright (c) 2001-2005 dev Information Technology Co.,Ltd. All Rights Reserved.
|
|
|
|
This software is the confidential and proprietary information of dev
|
|
Information Technology Co.,Ltd. ("Confidential Information"). You shall not
|
|
disclose such Confidential Information and shall use it only in
|
|
accordance with the terms of the license agreement you entered into
|
|
with dev.
|
|
|
|
dev MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
|
|
SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
|
PURPOSE, OR NON-INFRINGEMENT. dev SHALL NOT BE LIABLE FOR ANY DAMAGES
|
|
SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
|
|
THIS SOFTWARE OR ITS DERIVATIVES.
|
|
-->
|
|
<!-- $Id: dataSourceContext.xml,v 1.11 2010/06/01 09:25:32 peng.lei Exp $ -->
|
|
|
|
<beans>
|
|
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
|
|
|
|
<property name="driverClassName">
|
|
<value>oracle.jdbc.OracleDriver</value>
|
|
</property>
|
|
<property name="url">
|
|
<value>jdbc:oracle:thin:@47.117.118.155:1521:orcl</value>
|
|
<!-- <value>jdbc:oracle:thin:@47.100.181.252:1521:orcl</value> -->
|
|
</property>
|
|
<property name="username">
|
|
<value>jjwl</value>
|
|
</property>
|
|
<property name="password">
|
|
<value>jjwl</value>
|
|
</property>
|
|
<property name="maxActive">
|
|
<value>200</value>
|
|
</property>
|
|
</bean>
|
|
</beans> |