springboot 没法扫描到repository

sprint boot2.0启动的时候报错

A component required a bean of type 'XXX' that could not be found.

就是没有扫描到我的repository包里的代码

我先用@ComponentScan注解加上类所在的包名,没有报错,可以正常启动

但是坑爹的是@RestController注解下的Controller层的代码没有扫描到

就是说http://127.0.0.1:8080可以正常访问,但是Controller层配置的@RequestMapping都匹配不到

折腾了好久好久,比如@ComponentScan在加上Controller层的包名还是不行(导致repository包扫描不到),使用包名.*模糊匹配也不行,好坑爹,说好的比spring mvc配置要简单的呢

最后我盯上了@SpringBootApplication(exclude = DataSourceAutoConfiguration.class)注解

这个是因为最开始的时候项目启动报错没有数据库相关配置

然后我删掉了注解里的exclude,开始加上一些数据库配置,比如

spring.datasource.url=jdbc:mysql://xxx.x.x.x/favorites?useUnicode=true&characterEncoding=utf-8&serverTimezone=UTC&useSSL=true
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.jdbc.Driver

这里的数据库不是我本机的数据库,但是日志一直是报错连接的是连接我的本地数据库失败

报错信息里查了一下DataSourceConfiguration这个类,猜测是配置的数据库连接失败之后开始连接localhost的数据库

然后加上了hikari的一些配置就能正常启动,连接我配置的数据库,查询sql都正常了

spring.datasource.type=com.zaxxer.hikari.HikariDataSource
spring.datasource.hikari.minimum-idle=5
spring.datasource.hikari.maximum-pool-size=15
spring.datasource.hikari.auto-commit=true
spring.datasource.hikari.idle-timeout=30000
spring.datasource.hikari.pool-name=DatebookHikariCP
spring.datasource.hikari.max-lifetime=1800000
spring.datasource.hikari.connection-timeout=30000
spring.datasource.hikari.connection-test-query=SELECT 1

定位过程真的是好心累

转载于:https://my.oschina.net/chaoshu/blog/2874277

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值