gis-spring-dao.xml 1.4 KB

12345678910111213141516171819202122232425
  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:aop="http://www.springframework.org/schema/aop" xmlns:jaxws="http://cxf.apache.org/jaxws"
  6. xmlns:jaxrs="http://cxf.apache.org/jaxrs"
  7. xsi:schemaLocation="
  8. http://www.springframework.org/schema/context
  9. http://www.springframework.org/schema/context/spring-context-3.1.xsd
  10. http://www.springframework.org/schema/aop
  11. http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
  12. http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
  13. http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
  14. http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
  15. http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd">
  16. <bean id="gisTycjDao" class="com.jsjty.zygl.dao.impl.GisTycjDaoImpl">
  17. <property name="sqlSessionFactory" ref="sqlSessionFactory" />
  18. </bean>
  19. <bean id="gisTycjHSDao" class="com.jsjty.zygl.dao.impl.GisTycjHSDaoImpl">
  20. <property name="sqlSessionFactory" ref="aqsqlSessionFactory" />
  21. </bean>
  22. </beans>