26 lines
830 B
Java
26 lines
830 B
Java
package com.imdroid.sideslope;
|
|
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.boot.autoconfigure.domain.EntityScan;
|
|
import org.springframework.cloud.openfeign.EnableFeignClients;
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
|
|
|
|
/**
|
|
* @author Layton
|
|
* @date 2023/1/31 20:33
|
|
*/
|
|
@SpringBootApplication(scanBasePackages = {"com.imdroid"})
|
|
@MapperScan({"com.imdroid.secapi","com.imdroid.beidou.entity"})
|
|
@ComponentScan({"com.imdroid.*"})
|
|
@EntityScan({"com.imdroid.*"})
|
|
@EnableFeignClients(basePackages = "com.imdroid.*")
|
|
public class SideSlopeRtcmApp {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(SideSlopeRtcmApp.class, args);
|
|
}
|
|
}
|