Advertisement
Guest User

Untitled

a guest
Dec 28th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 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.xsd">
  6.  
  7. <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
  8. <property name="driverClassName" value="oracle.jdbc.driver.OracleDriver"/>
  9. <property name="url" value="jdbc:oracle:thin:@192.100.0.2:1521:t1"/>
  10. <property name="username" value=""/>
  11. <property name="password" value=""/>
  12. </bean>
  13.  
  14. WARNING: Ignored XML validation warning
  15. org.xml.sax.SAXParseException; lineNumber: 6; columnNumber: 68; schema_reference
  16. .4: Failed to read schema document 'http://www.springframework.org/schema/beans/
  17. spring-beans.xsd', because 1) could not find the document; 2) the document could
  18. not be read; 3) the root element of the document is not <xsd:schema>.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement