04 2021 档案
摘要:@Resourceprivate RedisTemplate<String, Object> redisTemplate; @Autowired(required = false)public void setRedisTemplate(RedisTemplate redisTemplate) {
阅读全文
摘要:grant all on xxxx.* to 'root'@'%' identified by 'password' with grant option; xxxx代表创建的数据库; password为用户密码,在此为root的密码
阅读全文
摘要:默认日志 Logback: 默认情况下,Spring Boot会用Logback来记录日志,并用INFO级别输出到控制台。在运行应用程序和其他例子时,你应该已经看到很多INFO级别的日志了。 从上图可以看到,日志输出内容元素具体如下: 时间日期:精确到毫秒 日志级别:ERROR, WARN, INF
阅读全文