mirror of
https://github.com/zongzibinbin/MallChat.git
synced 2026-03-14 14:13:42 +08:00
21 lines
621 B
Java
21 lines
621 B
Java
package com.abin.mallchat.custom;
|
|
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.boot.web.servlet.ServletComponentScan;
|
|
|
|
/**
|
|
* @author zhongzb
|
|
* @date 2021/05/27
|
|
*/
|
|
@SpringBootApplication(scanBasePackages = {"com.abin.mallchat"})
|
|
@MapperScan({"com.abin.mallchat.common.**.mapper"})
|
|
@ServletComponentScan
|
|
public class MallchatCustomApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(MallchatCustomApplication.class,args);
|
|
}
|
|
|
|
} |