主页 > 知识库 > springboot 没法扫描到repository的解决

springboot 没法扫描到repository的解决

热门标签:电销机器人能补救房产中介吗 天津开发区地图标注app 400电话申请客服 地图标注要花多少钱 电话机器人怎么换人工座席 移动外呼系统模拟题 济南外呼网络电话线路 江苏400电话办理官方 广州电销机器人公司招聘

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=truecharacterEncoding=utf-8serverTimezone=UTCuseSSL=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

定位过程真的是好心累!

补充:今天安装spring的时候遇到一些缺少repository的问题

在安装spring的时候会对其依赖的一些库的进行一些链接检查,导致会报一些缺少repository的问题

No repository found containing: osgi.bundle,oracle.eclipse.tools.rest.lib,16.4.0.201705251324
No repository found containing: osgi.bundle,org.eclipse.cft.server.core,1.2.3.v201709130027
No repository found containing: osgi.bundle,org.eclipse.cft.server.rse,1.0.1.v201709130027
No repository found containing: osgi.bundle,org.eclipse.cft.server.standalone.core,1.0.4.v201709130027
No repository found containing: osgi.bundle,org.eclipse.cft.server.standalone.ui,1.0.4.v201709130027
No repository found containing: osgi.bundle,org.eclipse.cft.server.ui,1.0.110.v201709130027

stackvoerflow上找到了对应的问题和解决方案:地址

解决方法:

Go to Help → Install new software → Here uncheck “Contact all update sites during install to find required software”

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。如有错误或未考虑完全的地方,望不吝赐教。

您可能感兴趣的文章:
  • springboot扫描引入jar包的service等组件方式
  • SpringBoot扫描不到Controller的解决方案
  • Springboot 扫描mapper接口的2种操作
  • springboot bean扫描路径的实现
  • Springboot自动扫描包路径来龙去脉示例详解
  • SpringBoot整合Mybatis无法扫描xml文件的解决
  • springboot启动扫描不到dao层接口的解决方案

标签:海西 杭州 濮阳 辛集 温州 宝鸡 榆林 昭通

巨人网络通讯声明:本文标题《springboot 没法扫描到repository的解决》,本文关键词  springboot,没法,扫描,到,repository,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《springboot 没法扫描到repository的解决》相关的同类信息!
  • 本页收集关于springboot 没法扫描到repository的解决的相关信息资讯供网民参考!
  • 推荐文章