From 26a63c4d8679fac85eee0b377c252c816efd231d Mon Sep 17 00:00:00 2001
From: 严智鑫 <test>
Date: 星期五, 20 九月 2024 11:28:32 +0800
Subject: [PATCH] 掰片识别增加筛选破损玻璃时增加条件,过滤掉Damage type字段不等于8或9的数据

---
 hangzhoumesParent/gateway/src/main/resources/application.yml |   14 ++++++++++++--
 1 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/hangzhoumesParent/gateway/src/main/resources/application.yml b/hangzhoumesParent/gateway/src/main/resources/application.yml
index f8655cf..a369150 100644
--- a/hangzhoumesParent/gateway/src/main/resources/application.yml
+++ b/hangzhoumesParent/gateway/src/main/resources/application.yml
@@ -1,10 +1,12 @@
 server:
   port: 88
 spring:
-  profiles:
-    active: prod
   application:
     name: gateway
+  cloud:
+    nacos:
+      discovery:
+        server-addr: 127.0.0.1:8848
     gateway:
       discovery:
         locator:
@@ -45,6 +47,14 @@
           filters:
             - StripPrefix=2
 
+
+        - id: glassStorage
+          uri: lb://glassStorage
+          predicates:
+            - Path=/api/glassStorage/**
+          filters:
+            - StripPrefix=2
+
 #        - id: unLoadGlass
 #          uri: lb://unLoadGlass
 #          predicates:

--
Gitblit v1.8.0