
常见错误
文章平均质量分 63
卡_卡_西
这个作者很懒,什么都没留下…
展开
-
安装pika配置系统服务过程中遇到的错误
control process exited, code=killed status=6 Job for pika.service failed because the control process exited with error code.See "systemctl status pika.service" and "journalctl -xe" for details原创 2022-09-16 12:40:45 · 2774 阅读 · 1 评论 -
Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedded
先看下错误: 从报错信息看,是没有配置数据源,没有合适的驱动程序类, 原因总结如下: 如果你需要连接数据库检查一下数据库配置是否正确。 如果你不需要连接数据库,检查下项目中引入的依赖有没有比如mybatis-spring-boot-starter 的依赖,因为springboot的自动配置原因如果有类似pom依赖,就需要在配置文件中进行数据库的配置,此时把没用的这些依赖删掉即可,或者可以在启动类中排除数据库的自动配置,如下: @SpringBootApplication(exclude = {原创 2021-09-17 10:36:13 · 2621 阅读 · 0 评论