mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-10 00:40:30 +08:00
0a34c76a82
- .gitignore:显式放行全部 maven-*、scripts、dev-support、frontend、反1、artifacts、历史导出目录 - 新增跟踪:device-manager/device-sdk/legacy-public、davinci-manager、cwos-*、cwos-resource 等源码与附属资源 - davinci FileStorageManagerImpl:Feign Response 关闭、绝对 URL 拉流 SSRF 校验(协议/主机/解析地址) - davinci OuterCallFeignClient:补充契约说明 - cwos-common-aks AksConstant:final 类 + 私有构造防误实例化 - device-manager DeviceConstant:沿用 DEFAULT_APPLICATIONID 拼写修正 Made-with: Cursor
60 lines
2.3 KiB
Java
60 lines
2.3 KiB
Java
/* */ package cn.cloudwalk;
|
|
/* */
|
|
/* */ import cn.cloudwalk.event.EnableCloudwalkEvent;
|
|
/* */ import com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration;
|
|
/* */ import io.micrometer.core.instrument.MeterRegistry;
|
|
/* */ import io.micrometer.spring.autoconfigure.MeterRegistryCustomizer;
|
|
/* */ import org.mybatis.spring.annotation.MapperScan;
|
|
/* */ import org.springframework.beans.factory.annotation.Value;
|
|
/* */ import org.springframework.boot.Banner;
|
|
/* */ import org.springframework.boot.SpringApplication;
|
|
/* */ import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
/* */ import org.springframework.cloud.netflix.feign.EnableFeignClients;
|
|
/* */ import org.springframework.context.annotation.Bean;
|
|
/* */ import org.springframework.context.annotation.EnableAspectJAutoProxy;
|
|
/* */ import org.springframework.scheduling.annotation.EnableAsync;
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */ @SpringBootApplication(exclude = {PageHelperAutoConfiguration.class})
|
|
/* */ @EnableFeignClients
|
|
/* */ @MapperScan({"cn.cloudwalk.data.**.mapper", "cn.cloudwalk.task.data.mapper"})
|
|
/* */ @EnableAsync
|
|
/* */ @EnableCloudwalkEvent
|
|
/* */ @EnableAspectJAutoProxy(exposeProxy = true)
|
|
/* */ public class Application
|
|
/* */ {
|
|
/* */ public static void main(String[] args) {
|
|
/* 41 */ System.out.println("[标准GPU服务器-出入口版]- 开始启动...");
|
|
/* */
|
|
/* 43 */ SpringApplication app = new SpringApplication(new Object[] { Application.class });
|
|
/* 44 */ app.setBannerMode(Banner.Mode.OFF);
|
|
/* 45 */ app.run(args);
|
|
/* */
|
|
/* 47 */ System.out.println("[标准GPU服务器-出入口版]- 启动完成...");
|
|
/* */ }
|
|
/* */
|
|
/* */ @Bean
|
|
/* */ MeterRegistryCustomizer<MeterRegistry> configurer(@Value("${spring.application.name}") String applicationName) {
|
|
/* 52 */ return meterRegistry -> meterRegistry.config().commonTags(new String[] { "application", applicationName });
|
|
/* */ }
|
|
/* */ }
|
|
|
|
|
|
/* Location: D:\星中心\ninca-crk-std-backend-V2.9.1_20210630.jar!\cn\cloudwalk\Application.class
|
|
* Java compiler version: 8 (52.0)
|
|
* JD-Core Version: 1.1.3
|
|
*/ |