Commit bdfae3cc by 钱炳权

dockercompose、协议模板参数格式修改、新增协议模板协议

parent b4175ef1
...@@ -142,8 +142,8 @@ ...@@ -142,8 +142,8 @@
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<configuration> <configuration>
<source>7</source> <source>8</source>
<target>7</target> <target>8</target>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
......
...@@ -4,10 +4,13 @@ import org.springframework.boot.SpringApplication; ...@@ -4,10 +4,13 @@ import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.openfeign.EnableFeignClients; import org.springframework.cloud.openfeign.EnableFeignClients;
import java.util.Arrays;
@SpringBootApplication @SpringBootApplication
@EnableFeignClients @EnableFeignClients
public class FuzzIntegration { public class FuzzIntegration {
public static void main(String[] args) { public static void main(String[] args) {
Arrays.stream(args).forEach(System.out::println);
SpringApplication.run(FuzzIntegration.class, args); SpringApplication.run(FuzzIntegration.class, args);
System.out.println("Start successfully!"); System.out.println("Start successfully!");
} }
......
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