Browse Source

protobuf
纠正代码提交

‘xugp 2 years ago
parent
commit
c21296d2b0

+ 1 - 1
gateway/src/main/java/com/gyee/edge/gateway/bridge/test/ReadGolden.java

@@ -2,7 +2,7 @@ package com.gyee.edge.gateway.bridge.test;
 
 
 import com.gyee.edge.common.utils.ByteUtil;
-import com.gyee.edge.loader.protobuf.UserProto;
+import com.gyee.edge.gateway.protobuf.UserProto;
 
 import java.io.UnsupportedEncodingException;
 import java.util.*;

File diff suppressed because it is too large
+ 1455 - 0
gateway/src/main/java/com/gyee/edge/gateway/protobuf/UserProto.java


+ 16 - 0
loader/src/main/java/com/gyee/edge/loader/Bootstrap.java

@@ -0,0 +1,16 @@
+
+package com.gyee.edge.loader;
+
+
+import org.springframework.boot.WebApplicationType;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.boot.builder.SpringApplicationBuilder;
+
+@SpringBootApplication()
+public class Bootstrap {
+
+    public static void main(String[] args) {
+        new SpringApplicationBuilder(Bootstrap.class).web(WebApplicationType.NONE).run(args);
+    }
+
+}