hexiao 1 year ago
parent
commit
9c527ed5c6
2 changed files with 16 additions and 7 deletions
  1. 12 7
      dc-account/pom.xml
  2. 4 0
      dc-account/src/main/resources/bootstrap.yml

+ 12 - 7
dc-account/pom.xml

@@ -26,6 +26,11 @@
 	</properties>
 
 	<dependencies>
+		<dependency>
+			<groupId>org.springframework.cloud</groupId>
+			<artifactId>spring-cloud-commons</artifactId>
+		</dependency>
+
 		<dependency>
 			<groupId>org.springframework.boot</groupId>
 			<artifactId>spring-boot-starter-data-redis</artifactId>
@@ -53,7 +58,7 @@
 			<groupId>org.springframework.cloud</groupId>
 			<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
 		</dependency>
-		<!-- <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-config</artifactId> 
+		<!-- <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-config</artifactId>
 			</dependency> -->
 		<dependency>
 			<groupId>org.springframework.cloud</groupId>
@@ -135,11 +140,11 @@
 				<groupId>org.springframework.boot</groupId>
 				<artifactId>spring-boot-maven-plugin</artifactId>
 			</plugin>
-			<!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> 
-				<configuration> <failOnMissingWebXml>false</failOnMissingWebXml> </configuration> 
-				</plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> 
-				<executions> <execution> <id>make-a-jar</id> <phase>compile</phase> <goals> 
-				<goal>jar</goal> </goals> </execution> </executions> <configuration> <failOnMissingWebXml>false</failOnMissingWebXml> 
+			<!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId>
+				<configuration> <failOnMissingWebXml>false</failOnMissingWebXml> </configuration>
+				</plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId>
+				<executions> <execution> <id>make-a-jar</id> <phase>compile</phase> <goals>
+				<goal>jar</goal> </goals> </execution> </executions> <configuration> <failOnMissingWebXml>false</failOnMissingWebXml>
 				</configuration> </plugin> -->
 		</plugins>
 	</build>
@@ -156,4 +161,4 @@
 	</repositories>
 
 
-</project>
+</project>

+ 4 - 0
dc-account/src/main/resources/bootstrap.yml

@@ -13,6 +13,10 @@ port: 9999
 #            failFast: true
 
 eureka:
+
+    instance:
+        prefer-ip-address: true  #配置是否显示ip地址,默认为false
+        instance-id: ${spring.cloud.client.ip-address}:${server.port}  #注册服务列表显示ip+端口
     client:
         serviceUrl:
             defaultZone: http://${server}:${port}/eureka