清理忽略springboot控制台启动的banner和启动日志

1、springboot的banner

spring:
  main:
    banner-mode: off

2、mybatis-plus的banner

mybatis-plus:
  type-aliases-package: com.hmdp.entity # 别名扫描包
  global-config:
    banner: false

3.springboot启动日志

在resources文件夹下创建logback.xml文件,文件内容如下:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
</configuration>