From 34981c30a78e8bbd7791131059a9210f9928b62c Mon Sep 17 00:00:00 2001
From: 刘光辉 <347230014@qq.com>
Date: 星期四, 17 九月 2026 09:24:09 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master' into master

---
 jnpf-dms/jnpf-dms-server/src/main/resources/application.yml |   53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 53 insertions(+), 0 deletions(-)

diff --git a/jnpf-dms/jnpf-dms-server/src/main/resources/application.yml b/jnpf-dms/jnpf-dms-server/src/main/resources/application.yml
new file mode 100644
index 0000000..e7bbb48
--- /dev/null
+++ b/jnpf-dms/jnpf-dms-server/src/main/resources/application.yml
@@ -0,0 +1,53 @@
+spring:
+  application:
+    name: jnpf-dms
+  mvc:
+    servlet:
+      load-on-startup: 0
+  main:
+    allow-bean-definition-overriding: true
+    allow-circular-references: true
+  config:
+    import:
+      - file:${JNPF_CONFIG_DIR:config}/shared/datasource.yaml
+      - file:${JNPF_CONFIG_DIR:config}/shared/resources.yaml
+      - file:${JNPF_CONFIG_DIR:config}/shared/system-config.yaml
+      - file:${JNPF_CONFIG_DIR:config}/shared/frame-config.yaml
+      - file:${JNPF_CONFIG_DIR:config}/shared/logger.yaml
+      - file:${JNPF_CONFIG_DIR:config}/shared/mq.yaml
+      - file:${JNPF_CONFIG_DIR:config}/shared/jnpf-dms.yaml
+      - file:${JNPF_CONFIG_DIR:config}/shared/discovery.yaml
+      - optional:file:${JNPF_CONFIG_DIR:config}/host-override/discovery.yaml
+
+server:
+  tomcat:
+    uri-encoding: UTF-8
+  port: 30016
+
+management:
+  endpoints:
+    web:
+      discovery:
+        enabled: false
+      exposure:
+        exclude: '*'
+
+jnpf:
+  security:
+    ignore:
+      urls:
+        - /ping
+        - /api/dms/ping
+        - /dev-api/dms/ping
+  tenant:
+    ignore-urls:
+      - /ping
+      - /api/dms/ping
+      - /dev-api/dms/ping
+
+sa-token:
+  filter:
+    exclude-paths:
+      - /ping
+      - /api/dms/ping
+      - /dev-api/dms/ping

--
Gitblit v1.8.0