net.guerlab.smart.article.service.autoconfigure.ArticleServiceAutoconfigure Maven / Gradle / Ivy
package net.guerlab.smart.article.service.autoconfigure;
import org.springframework.beans.factory.annotation.Configurable;
import org.springframework.context.annotation.ComponentScan;
import tk.mybatis.spring.annotation.MapperScan;
/**
* 文章服务自动注册
*
* @author guer
*/
@Configurable
@ComponentScan("net.guerlab.smart.article.service")
@MapperScan("net.guerlab.smart.article.service.mapper")
public class ArticleServiceAutoconfigure {}