Commit 5929e80f authored by neo's avatar neo

[dev] used druid pool datasource

parent 301477cd
...@@ -5,10 +5,9 @@ ...@@ -5,10 +5,9 @@
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd"> http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
<!-- See: https://github.com/alibaba/druid/wiki/%E9%85%8D%E7%BD%AE_DruidDataSource%E5%8F%82%E8%80%83%E9%85%8D%E7%BD%AE --> <!-- See: https://github.com/alibaba/druid/wiki/%E9%85%8D%E7%BD%AE_DruidDataSource%E5%8F%82%E8%80%83%E9%85%8D%E7%BD%AE -->
<bean id="dataSource" class="oracle.jdbc.pool.OracleDataSource"> <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
<property name="dataSourceName" value="tax_admin"/> <property name="url" value="${jdbc_url}"/>
<property name="URL" value="${jdbc_url}"/> <property name="username" value="${jdbc_user}"/>
<property name="user" value="${jdbc_user}"/>
<property name="password" value="${jdbc_password}"/> <property name="password" value="${jdbc_password}"/>
</bean> </bean>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment