Commit 332013af by huangfusuper

Merge branch 'master' of git.byitgroup.com:liyuan/byit-myth-job into developer

parents 2c56f592 e92c9556
...@@ -20,8 +20,6 @@ ...@@ -20,8 +20,6 @@
<dependency> <dependency>
<groupId>org.projectlombok</groupId> <groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId> <artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency> </dependency>
</dependencies> </dependencies>
......
...@@ -12,4 +12,10 @@ ...@@ -12,4 +12,10 @@
<artifactId>byit-myth-executor</artifactId> <artifactId>byit-myth-executor</artifactId>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
</dependencies>
</project> </project>
\ No newline at end of file
package com.byit.gateway;
import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.zuul.EnableZuulProxy;
/**
* @author Liyuan
* create date on 2019-11-12 15:21
* description:
* <p>
* 网关启动类
* </p>
* modified By
**/
@EnableZuulProxy
@SpringBootApplication
@Slf4j
public class GatewayApplication {
public static void main(String[] args) {
SpringApplication.run(GatewayApplication.class, args);
log.info("网关启动成功……");
}
}
...@@ -64,6 +64,13 @@ ...@@ -64,6 +64,13 @@
<type>pom</type> <type>pom</type>
<scope>import</scope> <scope>import</scope>
</dependency> </dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment