Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

tomcat - println() in Spring Boot logs

I use System.out.println() to debug my Spring Boot application. It is fine in my IDE. When run standalone, there is a strange situation when println from my @Controller prints to the console, but println from my @RestController doesn't (I see them both printing to the output in the IDE). I have this in application.properties:

server.tomcat.accesslog.enabled=true
server.tomcat.accesslog.directory=/dev
server.tomcat.accesslog.prefix=stdout
server.tomcat.accesslog.buffered=false
server.tomcat.accesslog.suffix=
server.tomcat.accesslog.file-date-format=

I am not sure what these constants mean. Is there a method of having all println from all threads print to the console? The @RestController executes, because Tomcat shows that it has been called, it returns 200 and the application works correctly.

question from:https://stackoverflow.com/questions/65852149/println-in-spring-boot-logs

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Prefer using logs (slf4j, log4j) instead of System.out.println With right configuration, it will write your logs in a file ".log", with date and time of traces (info, debug, warn, error levels) It is more appropriate if you want to deploy your app on a remote server.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...