You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
virtual-patient/virtual-patient-web/src/main/java/com/supervision/VirtualPatientApplication.java

23 lines
742 B
Java

package com.supervision;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.scheduling.annotation.EnableScheduling;
@SpringBootApplication
@MapperScan(basePackages = {"com.supervision.**.mapper"})
@EnableScheduling
@EnableFeignClients(basePackages = "com.supervision")
@EnableDiscoveryClient
public class VirtualPatientApplication {
public static void main(String[] args) {
SpringApplication.run(VirtualPatientApplication.class, args);
}
}