package com.fdkankan; import com.dtflys.forest.springboot.annotation.ForestScan; import com.yomahub.tlog.core.enhance.bytes.AspectLogEnhance; 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 @EnableDiscoveryClient @EnableFeignClients @EnableScheduling @MapperScan("com.fdkankan.**.mapper") @ForestScan("com.fdkankan.scene.httpclient") public class SceneApplication { static { AspectLogEnhance.enhance(); } public static void main(String[] args) { SpringApplication.run(SceneApplication.class, args); } }