栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

SpringCloud启动报错8080端口占用

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

SpringCloud启动报错8080端口占用

错误信息就不贴了,8080端口占用,SpringBoot启动失败

做微服务练习写到 Zuul网关模块时,从码云获取端口号,运行时报错8080,多次反复检查发现两个问题

1.注解错误

  • ConfigServer项目中的启动类的注解使用错误,不能使用@EnableEurekaClient

  • 应该使用@EnableConfigServer

ConfigServerApp:

package cn.shop.cloud;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;

@SpringBootApplication
//@EnableEurekaClient  不能使用这个,会报8080
@EnableConfigServer
public class ConfigServerApp {
    public static void main(String[] args) {
        SpringApplication.run(ConfigServerApp.class,args);
    }
}

2.依赖错误 

  • Zull网关模块导入config依赖时,应该使用client
  • 如果使用server也会报8080端口错误
    
        org.springframework.cloud
        spring-cloud-config-client
    

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/435112.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号