12345678910111213141516171819 |
- package com.koobietech.eas;
- import org.mybatis.spring.annotation.MapperScan;
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
- import org.springframework.context.annotation.ComponentScan;
- @SpringBootApplication
- @MapperScan(basePackages = {"com.koobietech.eas.mbg.mapper"})
- @ComponentScan(basePackages = {
- "com.koobietech.eas.controller", "com.koobietech.eas.security",
- "com.koobietech.eas.service", "com.koobietech.eas.common"})
- public class ControllerApplication {
- public static void main(String[] args) {
- SpringApplication.run(ControllerApplication.class, args);
- }
- }
|