bee 整合spring boot时,Cannot determine embedded database driver class for database type NONE

阴雪风
2023-12-01

bee 整合spring boot时, 出现以下问题:

问题1:

Cannot determine embedded database driver class for database type NONE

问题2:

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

极有可能是配置文件没写对.

bee 整合spring boot时,配置数据源(而不是直接连驱动)

要用以下方式配置: 

## 数据源配置
spring.datasource.url=jdbc:mysql://localhost:3306/bee?characterEncoding=UTF-8
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.username=root
spring.datasource.password=123123

-------------------------------------------------

Bee 是一个简单,易用,功能强大,开发速度快,编码少的 JAVA ORM 框架。连接,事务都可以由Bee框架负责管理. Bee 简化了与DB交互的编码工作, 是 编码复杂度 为 O(1) 的Java 框架!

Bee简单易用:单表操作、多表关联操作,可以不用写sql,极少语句就可以完成SQL操作;概念简单,10分钟即可入门。
Bee功能强大:复杂查询也支持向对象方式,分页查询性能更高,一级缓存即可支持个性化优化;具有分布式特性。高级要求,还可以方便自定义SQL语句。

码云上的项目首页:

bee: 互联网新时代的Java ORM工具,简单、高效,开发速度快!

bee-springboot: Bee整合Spring Boot,让你瞬间拥有两样快速开发利器!

github:

https://github.com/automvc/bee

相关框架设计信息也可关注微信公众号:软件设计活跃区

 类似资料: