Solve the problem of multiple listeners reported when starting tomcat in Idea

Solve the problem of multiple listeners reported when starting tomcat in Idea

Error screenshot

Can't find where the exception occurred. Solution: Create a logging.properties file in the resources directory and restart

handlers = org.apache.juli.FileHandler, java.util.logging.ConsoleHandler 
 
############################################################
# Handler specific properties.
# Describes specific configuration info for Handlers.
############################################################
 
org.apache.juli.FileHandler.level = FINE 
org.apache.juli.FileHandler.directory = ${catalina.base}/logs 
org.apache.juli.FileHandler.prefix = error-debug. 
 
java.util.logging.ConsoleHandler.level = FINE 
java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter

This is the exception troubleshooting of tomcat. The specific exception can be printed out in the console and the location can be found smoothly.

This is the end of this article about solving the problem of Idea's tomcat startup reporting multiple listeners. For more related Idea tomcat startup error content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Solve the problem of IDEA configuring tomcat startup error
  • Solve the problem of error 404 when starting tomcat after importing ssm project into idea
  • Solve the problem that idea2020.2 encounters an error in the pom.xml file Maven plugin tomcat7

<<:  Summary of related functions for Mysql query JSON results

>>:  JavaScript to implement the countdown for sending SMS

Recommend

MySQL multi-instance configuration application scenario

Table of contents MySQL multiple instances Multi-...

JavaScript imitates Taobao magnifying glass effect

This article shares the specific code for JavaScr...

MySQL 8.0.22 winx64 installation and configuration graphic tutorial

mysql 8.0.22 winx64 installation and configuratio...

I have compiled a few cool design sites that I think are good.

You must have inspiration to design a website. Goo...

Implementation steps for docker-compose to deploy etcd cluster

Table of contents Write docker-compose.yml Run do...

How to mark the source and origin of CSS3 citations

I am almost going moldy staying at home due to th...

Analysis of the principle of Mybatis mapper dynamic proxy

Preface Before we start explaining the principle ...

Summary of discussion on nginx cookie validity period

Every visit will generate Cookie in the browser, ...

CocosCreator learning modular script

Cocos Creator modular script Cocos Creator allows...

JavaScript to implement image preloading and lazy loading

This article shares the specific code for impleme...

MySQL string splitting operation (string interception containing separators)

String extraction without delimiters Question Req...