Advertisement
Guest User

Untitled

a guest
Nov 30th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MXML 0.89 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3.       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.       xsi:schemaLocation="http://www.springframework.org/schema/beans
  5.    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd ">
  6.  
  7.  
  8.     <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
  9.         <property name="driverClassName" value="oracle.jdbc.driver.OracleDriver"/>
  10.         <property name="url" value="jdbc:oracle:thin:@localhost:1521:INTL"/>
  11.         <property name="username" value="system"/>
  12.         <property name="password" value="sherfedinov"/>
  13.     </bean>
  14.  
  15.     <!-- Definition for studentJDBCTemplate bean -->
  16.     <bean id="resourceJDBCTemplate"
  17.          class="ResourceJDBCTemplate">
  18.         <property name="dataSource"  ref="dataSource" />
  19.     </bean>
  20.  
  21. </beans>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement