HikariPool-1 - Shutdown initiated... HikariPool-1 - Shutdown completed. Stopping service

错误重现在这里。。大概是这样的

网上说的报错原因及解决方案:

1.当时在实体类的时候,写了个bean类 ,但是这个bean类并不是我数据库的表,我在里面写了

@Entity
@Table(name ="bean")

修改该bean或者修改数据库配置文件

2.在实际操作中

mybatis:
  mapper-locations:
    - classpath:mapper/*.xml

修改mybatis的 mapper-locations配置

3.项目组老大哥说:

同一个服务上次没有彻底杀死,有残留进程,也会出现这种启动时候直接Shutdown initiated,Shutdown completed

你可能感兴趣的:(启动报错)