2024-03-29 10:49:12 +08:00
|
|
|
package com.atguigu.pay;
|
|
|
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
2024-03-29 12:49:08 +08:00
|
|
|
import org.springframework.cloud.openfeign.EnableFeignClients;
|
2024-03-29 15:30:21 +08:00
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
2024-03-29 10:49:12 +08:00
|
|
|
|
|
|
|
@SpringBootApplication
|
2024-03-29 15:30:21 +08:00
|
|
|
// @EnableConfigurationProperties(value = {AlipayProperties.class})
|
|
|
|
@ComponentScan("com.atguigu")
|
2024-03-29 12:49:08 +08:00
|
|
|
@EnableFeignClients(basePackages = {"com.atguigu.feign"})
|
2024-03-29 10:49:12 +08:00
|
|
|
@Slf4j
|
|
|
|
public class PayApplication {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
SpringApplication.run(PayApplication.class, args);
|
|
|
|
}
|
|
|
|
}
|