Spring-boot启动失败 Unregistering JMX-exposed beans on shutdown 异常处理

news/2024/11/7 14:42:03/

目录

  • 一、异常错误
  • 二、原因
  • 三、解决方法

一、异常错误

  • Spring-boot启动Run时,出现 o.s.j.e.a.AnnotationMBeanExporter - Unregistering JMX-exposed beans on shutdown 错误

在这里插入图片描述

*************************** APPLICATION FAILED TO START


Description:

The Tomcat connector configured to listen on port 8080 failed to
start. The port may already be in use or the connector may be
misconfigured.

Action:

Verify the connector’s configuration, identify and stop any process
that’s listening on port 8080, or configure this application to listen
on another port.

2023-01-03 12:12:42 [restartedMain] INFO
o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext -
Closing
org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@611a84d8:
startup date [Tue Jan 03 20:12:35 CST 2023]; root of context hierarchy
2023-01-03 12:12:42 [restartedMain] INFO
o.s.j.e.a.AnnotationMBeanExporter - Unregistering JMX-exposed beans on
shutdown 2023-01-03 12:12:42 [restartedMain] INFO
o.s.j.e.a.AnnotationMBeanExporter - Unregistering JMX-exposed beans
Disconnected from the target VM, address: ‘127.0.0.1:14533’,
transport: ‘socket’


***************************
APPLICATION FAILED TO START
***************************Description:The Tomcat connector configured to listen on port 8080 failed to start. The port may already be in use or the connector may be misconfigured.Action:Verify the connector's configuration, identify and stop any process that's listening on port 8080, or configure this application to listen on another port.2023-01-03 12:12:42 [restartedMain] INFO  o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@611a84d8: startup date [Tue Jan 03 20:12:35 CST 2023]; root of context hierarchy
2023-01-03 12:12:42 [restartedMain] INFO  o.s.j.e.a.AnnotationMBeanExporter - Unregistering JMX-exposed beans on shutdown
2023-01-03 12:12:42 [restartedMain] INFO  o.s.j.e.a.AnnotationMBeanExporter - Unregistering JMX-exposed beans
Disconnected from the target VM, address: '127.0.0.1:14533', transport: 'socket'

二、原因

  • Tomcat 的默认8080端口被占用

三、解决方法

  • cmd输入netstat -ano|findstr 8080,找到占用8080端口的进程
  • 列对应的分别是:协议-本地地址-外部地址-状态-PID
  • 输入taskkill /f /pid PID终止8080端口进程,此例PID为5476,故输入taskkill /f /pid 5476

在这里插入图片描述

  • 或者打开任务管理器,找到PID为5476的进程将其结束

在这里插入图片描述

  • 重新Spring-boot启动Run,一直转圈但未报出SEVERE: Failed异常,表示Tomcat是正常运行的,打开浏览器输入访问地址即可

在这里插入图片描述
在这里插入图片描述


http://www.ppmy.cn/news/9097.html

相关文章

vue新春游戏-拼手速抢车票小游戏,学习玩乐两不误,春节小游戏,新年小游戏

ue新春游戏-拼手速抢车票,老规矩,体验地址:http://game.pkec.net/word-ticket/。 写这个主要是前几天群里运营老师说咋没人写抢车票的,再加上我上一篇文章上了掘金一周,听说多上几次有证书,我还没搞到过掘金…

【Linux】文件操作|文件描述符|重定向

文章目录1.文件操作系统调用的几个基本接口openwritereadlseekwrite read close lseek ,对比C文件相关接口2.如何理解文件操作?3.文件描述符fd文件描述符的分配规则重定向使用 dup2 系统调用进行重定向4.在自己的shell中添加重定向功能:1.文件操作系统调…

Linux:使用telnet命令提示:Connection refused

我是 ABin-阿斌:写一生代码,创一世佳话,筑一览芳华。如果小伙伴们觉得不错就一键三连吧~ 下一篇:Linux安装telnet命令教程 文章目录一、分析没有xinetd服务:二、讲解: 什么是 telnet 命令具体语法具体参数三…

信息学奥赛一本通 1916:【01NOIP普及组】求先序排列 | 洛谷 P1030 [NOIP2001 普及组] 求先序排列

【题目链接】 ybt 1916:【01NOIP普及组】求先序排列 洛谷 P1030 [NOIP2001 普及组] 求先序排列 【题目考点】 1. 二叉树 【解题思路】 已知中序、后序遍历序列,构建二叉树,而后对该二叉树做先序遍历,得到先序遍历序列。 该题…

CSS 中哪些属性可继承,哪些不可以?

能继承的属性 字体系列属性:font、font-family、font-weight、font-size、font-style;文本系列属性: 2.1)内联元素:color、line-height、word-spacing、letter-spacing、 text-transform; 2.2)块级元素:text-indent、text-align…

web3:区块链Blockchain

在此声明,仅做分享,绝不存在倡导炒币行为 目录区块链概念区块链基础知识交易(Transaction)区块(Block)链(Chain)公私钥区块链存储结构简单理解区块结构Block区块头Merkle根nonce区块链原理区块链架构区块链特点分布式账本—不可篡改性、去中心化非对称加…

选数异或-acwing每日一题

项目场景: 较难的dp哈希 思维题 问题描述 给定一个长度为 n 的数列 A1,A2,,An 和一个非负整数 x,给定 m 次查询,每次询问能否从某个区间 [l,r] 中选择两个数使得他们的异或等于 x。 输入格式 输入的第一行包含三个整数n,m,x。 第二行包含…

【ARMv8 SIMD和浮点指令编程】Libyuv I420 转 ARGB 流程分析

Libyuv 可以说是做图形图像相关从业者绕不开的一个常用库,它使用了单指令多数据流提升性能。以 ARM 处理为主线,通过 I420 转 ARGB 流程来分析它是如何流转的。 Libyuv 是一个开源项目,包括 YUV 的缩放和转换功能。 使用邻近、双线性或 box…