|
@@ -1,7 +1,5 @@
|
|
|
package com.keao.edu.im;
|
|
|
|
|
|
-import lombok.extern.slf4j.Slf4j;
|
|
|
-import org.mybatis.spring.annotation.MapperScan;
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
|
|
@@ -16,10 +14,8 @@ import org.springframework.scheduling.annotation.EnableScheduling;
|
|
|
import org.springframework.web.client.RestTemplate;
|
|
|
|
|
|
@EnableAspectJAutoProxy
|
|
|
-@Slf4j
|
|
|
@SpringBootApplication
|
|
|
@EnableFeignClients("com.keao.edu")
|
|
|
-@MapperScan("com.keao.edu")
|
|
|
@ComponentScan("com.keao.edu")
|
|
|
@EnableScheduling
|
|
|
@EnableDiscoveryClient
|
|
@@ -29,7 +25,6 @@ public class SealClassApplication {
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
SpringApplication.run(SealClassApplication.class, args);
|
|
|
- log.info("SealClassApplication started");
|
|
|
}
|
|
|
|
|
|
@Bean
|