spring-directive.xml 1.6 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"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:jdbc="http://www.springframework.org/schema/jdbc"
  6. xmlns:jee="http://www.springframework.org/schema/jee"
  7. xmlns:tx="http://www.springframework.org/schema/tx"
  8. xmlns:jpa="http://www.springframework.org/schema/data/jpa"
  9. xmlns:aop="http://www.springframework.org/schema/aop"
  10. xmlns:mvc="http://www.springframework.org/schema/mvc"
  11. xsi:schemaLocation="
  12. http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
  13. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
  14. http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.1.xsd
  15. http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.1.xsd
  16. http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
  17. http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
  18. http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa.xsd
  19. http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd"
  20. default-lazy-init="true">
  21. <!--后台权限标签-->
  22. <bean id="pop_perm" class="com.popedom.web.directive.PermistionDirective"/>
  23. <bean id="enum_show" class="com.core.util.EnumValueShow" />
  24. </beans>