first commit

This commit is contained in:
编码猿
2024-09-27 01:06:04 +08:00
commit cbed24c40d
205 changed files with 8732 additions and 0 deletions

View File

@@ -0,0 +1 @@
c4e76a97-e5ac-4117-89e9-6724931be6db

View File

@@ -0,0 +1 @@
22d963e5-1485-454f-b59a-bc85e9067c4c

View File

@@ -0,0 +1 @@
a0c904b2-74d6-4a8d-a92b-fda433b77c03

View File

@@ -0,0 +1 @@
dac28e3f-0846-421f-9afa-8309a9f5958f

View File

@@ -0,0 +1,17 @@
package com.gateway.zuul;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.cloud.netflix.zuul.EnableZuulProxy;
@EnableZuulProxy
@EnableEurekaClient
@SpringBootApplication
public class ZuulApplication {
public static void main(String[] args) {
SpringApplication.run(ZuulApplication.class, args);
}
}