后端springboot
文章平均质量分 57
干饭要有精神
这个作者很懒,什么都没留下…
展开
-
Mybatis 跨模块 接口注入
问题描述编辑器提示是可以查找到对应的Mapper的,但是运行时控制台却报错了。下面是server需要调用user里面的配置。server是调用者,user是被调用者。问题解决前提:我的启动类是放在server模块里面的,因此application.yml放在server模块里。1、更改mybatis.mapper-locations,在classpath后面加个*号更改前:更改后:2、如果上述解决方法不能成功,则尝试如下方法在被调用的模块里面添加一个配置类,配置如下,即可成功。原创 2021-01-16 00:32:17 · 443 阅读 · 0 评论 -
spring-boot-starter-data-redis初始化(使用lettuce)
前言1、查了许多资料,整合成一个通用的RedisTemplate。2、推荐Redis可视化工具 Another Redis DeskTop Manager,免费好用,人机交互性能好。配置当前版本<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId>原创 2020-12-07 12:13:06 · 11010 阅读 · 1 评论 -
Reason: Failed to determine a suitable driver class
本来运行好好的项目,下一次运行却报错了。报错原因: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看到报错原因,检查过了数据库源配置的编写,也没有错误。找了很多资料,发现有可能是 maven原创 2020-12-03 19:21:15 · 15754 阅读 · 3 评论