You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
447 B

  1. package com.xm;
  2. import org.springframework.context.annotation.ComponentScan;
  3. import org.springframework.context.annotation.Configuration;
  4. import org.springframework.scheduling.annotation.EnableAsync;
  5. import org.springframework.web.servlet.config.annotation.EnableWebMvc;
  6. /**
  7. * 要使用mdp平台功能必须 扫码com.mdp包
  8. * 一些默认公共配置
  9. */
  10. @ComponentScan(basePackages={"com.mdp"})
  11. @Configuration
  12. public class AutoConfig {
  13. }