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
444 B

package com;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
/**
* 要使用mdp平台功能,必须 扫码com.mdp包
* 一些默认公共配置
*/
@ComponentScan(basePackages={"com.mdp"})
@Configuration
public class AutoConfig {
}