mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-12 01:40:30 +08:00
chore(v0.11): 全路径纳入版本库与走查整改
- .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
Former-commit-id: 0a34c76a82
This commit is contained in:
+40
@@ -0,0 +1,40 @@
|
||||
/* */ package BOOT-INF.classes.cn.cloudwalk;
|
||||
/* */
|
||||
/* */ 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.netflix.feign.EnableFeignClients;
|
||||
/* */ import org.springframework.scheduling.annotation.EnableScheduling;
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* */ @MapperScan({"cn.cloudwalk.data.alarm.**.mapper"})
|
||||
/* */ @EnableFeignClients(basePackages = {"cn.cloudwalk"})
|
||||
/* */ @EnableDiscoveryClient
|
||||
/* */ @SpringBootApplication
|
||||
/* */ @EnableScheduling
|
||||
/* */ public class AlarmApplication
|
||||
/* */ {
|
||||
/* */ public static void main(String[] args) {
|
||||
/* 31 */ SpringApplication application = new SpringApplication(new Object[] { cn.cloudwalk.AlarmApplication.class });
|
||||
/* 32 */ application.run(args);
|
||||
/* */ }
|
||||
/* */ }
|
||||
|
||||
|
||||
/* Location: D:\星中心\ninca_qk_alarm_app_01-ninca_qk_alarm_app\ninca-qk-alarm-app-V2.9.2_20210730.jar!\BOOT-INF\classes\cn\cloudwalk\AlarmApplication.class
|
||||
* Java compiler version: 8 (52.0)
|
||||
* JD-Core Version: 1.1.3
|
||||
*/
|
||||
Reference in New Issue
Block a user