首页 > 其他分享 >Springboot项目启动报错Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedded d

Springboot项目启动报错Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedded d

时间:2022-10-29 19:00:21浏览次数:68  
标签:false Springboot embedded no url Failed 报错 true


***************************
APPLICATION FAILED TO START
***************************

Description:

Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.

Reason: Failed to determine a suitable driver class


Action:

Consider the following:
If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
If you have database settings to be loaded from a particular profile you may need to activate it (no profiles are currently active).


Process finished with exit code 1

解决方法:在url项目后加上如下配置信息:

useUnicode=true&characterEncoding=utf-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8

url: jdbc:mysql://127.0.0.1:3306/springbootr0361?useUnicode=true&characterEncoding=utf-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8

还不行的话有时候idea编译器没有编译项目,需要手动build下或maven-package下就基本OK了

Springboot项目启动报错Failed to configure a DataSource: ‘url‘ attribute is not specified and no embedded d_ico

 

标签:false,Springboot,embedded,no,url,Failed,报错,true
From: https://blog.51cto.com/u_14304894/5806339

相关文章

  • python:ERROR: No matching distribution found for Pillow==9.1.0的处理(Python 3.6.
    一,查看当前python和pip的版本:查看python的版本:[lhdop@blog~]$python3--versionPython3.6.8查看pip的版本:[lhdop@blog~]$pip3-Vpip21.3.1from/us......
  • Springboot + bootstrap 实现 增删改查
    SpringBoot+bootstrap 配合mysql实现增删改查功能创建项目打开idea工具----  点击File---new---Project创建springBoot项目工程,版本统一:我使......
  • choco报错
    choco:无法将“choco”项识别为cmdlet、函数、脚本文件或可运行程序的名称。请检查名称的拼写,如果包括路径,请确保路径正确,然后再试一次。原因:没有安装chocolatey:cho......
  • 关于Windows-SSM-agent-service服务启动报错refer to service-specific error code 1
    今天在一台aws机器上,启动SSM-agent-service服务报如下错误:WindowscouldnotstarttheAmazonSSMAgentonLocalComputer.Formoreinformation,reviewtheSystem......
  • SpringBoot推送微信测试公众号信息
    1、登陆微信公众平台测试号2、扫码关注3、新建模版参数需以{{开头,以.DATA}}结尾,ex:{{msg.DATA}},代码里面替换就可以了templateMessage.addData(newWxMpTemplateDat......
  • 【Node.JS 练习】时钟案例
    目录​​案例要求​​​​实现​​​​步骤​​​​创建正则表达式​​​​使用相关模块,读取需要被处理的html文件​​​​自定义resolve方法​​​​css​​​​ js​​......
  • 【Node.JS 】http的概念及作用
    什么是http模块在网络节点中,负责消费资源的电脑,叫做客户端,负责对外提供网络资源的电脑,叫做服务器。http模块是Node.js官方提供的,用来创建web服务器的模块,通过http模块提供的......
  • 【Node.JS 练习】考试成绩整理
     目标整理前的数据格式  整理后的数据格式 实现思路导入需要的fs文件系统模块使用fs.readFile()方法,读取素材目录下的成绩.txt文件。判断文件是否读取失败。文件读取成功......
  • 【Node.JS】buffer类缓冲区
    目录​​简介​​​​创建Buffer类​​​​使用Buffer类​​​​例 ​​​​直接使用buffer类​​简介node.js的开发语言就是js,javascript语言自身只有字符串数据类型,没有......
  • 【Node.JS】事件的绑定与触发
    目录​​简介​​​​绑定事件​​​​on()​​​​addListener()​​​​ once()​​​​监听事件emit()​​​​ 传参​​​​ 删除事件​​​​removeListener()​​​​ remov......