parent
3dd267b73b
commit
a206ef3878
@ -1,10 +1,10 @@
|
||||
server:
|
||||
port: 80
|
||||
port: 80
|
||||
|
||||
spring:
|
||||
application:
|
||||
name: placeorder
|
||||
cloud:
|
||||
nacos:
|
||||
discovery:
|
||||
server-addr: 114.116.226.76:8848
|
||||
spring:
|
||||
application:
|
||||
name: placeorder
|
||||
cloud:
|
||||
nacos:
|
||||
discovery:
|
||||
server-addr: 114.116.226.76:8848
|
@ -0,0 +1,18 @@
|
||||
package com.mashibing;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
|
||||
|
||||
/**
|
||||
* @author zjw
|
||||
* @description
|
||||
*/
|
||||
@SpringBootApplication
|
||||
@EnableDiscoveryClient
|
||||
public class ItemStockStarterApp {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(ItemStockStarterApp.class,args);
|
||||
}
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
server:
|
||||
port: 8080
|
||||
|
||||
spring:
|
||||
application:
|
||||
name: itemstock
|
||||
cloud:
|
||||
nacos:
|
||||
discovery:
|
||||
server-addr: 114.116.226.76:8848
|
Loading…
Reference in new issue