Просмотр исходного кода

增加OkHttp配置文件读取

tags/v1.0.0^2
林万龙 4 лет назад
Родитель
Сommit
7380704f22
1 измененных файлов: 5 добавлений и 2 удалений
  1. +5
    -2
      src/main/java/com/telpo/dipperposition/DipperPositionApplication.java

+ 5
- 2
src/main/java/com/telpo/dipperposition/DipperPositionApplication.java Просмотреть файл

@@ -12,6 +12,8 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;

import java.util.Properties;
import java.util.concurrent.Executor;
@@ -23,10 +25,11 @@ import java.util.concurrent.Executor;
* @create: 2020-06-18 16:39
*/
@SpringBootApplication
@EnableConfigurationProperties
@EnableDiscoveryClient
@Slf4j
@ConfigurationPropertiesScan
@EnableAsync
@EnableScheduling
@Slf4j
public class DipperPositionApplication {

public static void main(String[] args) {


Загрузка…
Отмена
Сохранить