spring-mvc-rest.xml 901 B

123456789101112131415
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns:context="http://www.springframework.org/schema/context"
  4. xmlns:mvc="http://www.springframework.org/schema/mvc"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
  6. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
  7. http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd">
  8. <!-- 自动扫描且只扫描@Controller -->
  9. <context:component-scan base-package="org.activiti.rest">
  10. <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller" />
  11. </context:component-scan>
  12. <mvc:annotation-driven />
  13. </beans>