
springboot
文章平均质量分 95
Kolde
这个作者很懒,什么都没留下…
展开
-
spring boot Tomcat maxConnections、maxThreads、acceptCount
图1:maxConnections:官方解释Attribute Description maxConnections The maximum number of connections that the server will accept and process at any given time. When this number has been reached, the server will accept, but not process, one fu.原创 2021-01-22 20:25:22 · 4828 阅读 · 1 评论 -
springboot @Slf4j 只显示Error 日志,不显示INFO日志 和DEBUG 日志
问题:springboot 使用@Slf4j 注解的 log.debug(),log.info(),log.error(),只显示ERROR日志,不显示DEBUG和INFO日志。原因:application.properties中的 logging.level.* 设置有问题,设置成了logging.level.root=warn所以只显示,warn ,error, fatal 日志,解决:将application.properties文件中logging....原创 2020-11-11 16:29:06 · 11616 阅读 · 0 评论 -
Centos 7 安装与使用 mysql && mysql 基本命令
转自:https://www.digitalocean.com/community/tutorials/how-to-install-mysql-on-centos-7IntroductionMySQL is an open-source database management system, commonly installed as part of the popular LEMP(L...转载 2019-02-15 19:28:56 · 447 阅读 · 0 评论 -
Exception in thread "main" java.lang.NoClassDefFoundError: org/joda/time/LocalTime at **.main
问题:运行程序: java hello/HelloWorld出现错误:Exception in thread "main" java.lang.NoClassDefFoundError: org/joda/time/LocalTime at hello.HelloWorld.main(HelloWorld.java:7)Caused by: java.lang.Class...原创 2019-02-13 17:35:15 · 1345 阅读 · 0 评论