fix(uploader): 修复uploader依赖未导入
This commit is contained in:
@@ -1,18 +1,21 @@
|
||||
package com.lanyuanxiaoyao.service.uploader;
|
||||
|
||||
import com.ulisesbocchio.jasyptspringboot.annotation.EnableEncryptableProperties;
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
||||
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
|
||||
import org.springframework.retry.annotation.EnableRetry;
|
||||
|
||||
/**
|
||||
* @author lanyuanxiaoyao
|
||||
* @date 2024-01-24
|
||||
*/
|
||||
// @EnableDiscoveryClient
|
||||
@SpringBootApplication/* (scanBasePackages = {"com.lanyuanxiaoyao.service"}) */
|
||||
@EnableDiscoveryClient
|
||||
@SpringBootApplication(scanBasePackages = {"com.lanyuanxiaoyao.service"})
|
||||
@EnableConfigurationProperties
|
||||
// @EnableEncryptableProperties
|
||||
// @EnableRetry
|
||||
@EnableEncryptableProperties
|
||||
@EnableRetry
|
||||
public class UploaderApplication {
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(UploaderApplication.class, args);
|
||||
|
||||
Reference in New Issue
Block a user