Advertisement
jbjares

Untitled

Oct 21st, 2014
421
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 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" xmlns:tx="http://www.springframework.org/schema/tx"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:mongo="http://www.springframework.org/schema/data/mongo"
  6. xmlns:jee="http://www.springframework.org/schema/jee" xmlns:jms="http://www.springframework.org/schema/jms"
  7. xmlns:p="http://www.springframework.org/schema/p"
  8. xsi:schemaLocation="http://www.springframework.org/schema/beans
  9. http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
  10. http://www.springframework.org/schema/tx
  11. http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
  12. http://www.springframework.org/schema/context
  13. http://www.springframework.org/schema/context/spring-context-3.0.xsd
  14. http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
  15. http://www.springframework.org/schema/jms http://www.springframework.org/schema/jms/spring-jms-3.0.xsd
  16. http://www.springframework.org/schema/data/mongo
  17. http://www.springframework.org/schema/data/mongo/spring-mongo-1.0.xsd
  18. http://www.springframework.org/schema/jee
  19. http://www.springframework.org/schema/jee/spring-jee-3.0.xsd">
  20.  
  21. <context:annotation-config />
  22. <context:component-scan annotation-config="true"
  23. base-package="eu" />
  24. <context:property-placeholder
  25. location="classpath:SifemWindowsPathResource.properties" />
  26.  
  27. <bean id="virtDataSource" class="virtuoso.jena.driver.VirtDataSource"
  28. name="virtDataSource">
  29. <constructor-arg type="java.lang.String" value="jdbc:virtuoso://xxx.xxx.xxx.xxx:xxxx/" />
  30. <constructor-arg type="java.lang.String" value="xxx" />
  31. <constructor-arg type="java.lang.String" value="xxx" />
  32. </bean>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement