Springboot指定扫描路径

方式一:通过在启动类的@SpringbootApplication中指定包扫描或类扫描

指定需要扫描的包

scanBasePackages={"待扫描包1","待扫描包2", . . . ," "}

指定需要扫描的类

scanBasePackageClasses={类1.class,类2.class,...}

方式二:利用 @Configuration + @ComponentScan 进行指定待扫描的包

前提:配置类要在启动类所在包或子包下 ( 保证配置类要被扫描到 )

指定需要扫描的包:

basePackages={"待扫描包1","待扫描包2", . . . ," "}

指定需要扫描的类:

basePackageClasses={类1.class,类2.class,...}

相关推荐
许苑向上1 小时前
MVCC底层原理实现
java·数据库·mvcc原理
组合缺一1 小时前
Solon Cloud Gateway 开发:熟悉 ExContext 及相关接口
java·后端·gateway·solon
一只淡水鱼662 小时前
【spring】集成JWT实现登录验证
java·spring·jwt
忘忧人生2 小时前
docker 部署 java 项目详解
java·docker·容器
null or notnull3 小时前
idea对jar包内容进行反编译
java·ide·intellij-idea·jar
言午coding4 小时前
【性能优化专题系列】利用CompletableFuture优化多接口调用场景下的性能
java·性能优化
幸好我会魔法4 小时前
人格分裂(交互问答)-小白想懂Elasticsearch
大数据·spring boot·后端·elasticsearch·搜索引擎·全文检索
危险、4 小时前
Spring Boot 无缝集成SpringAI的函数调用模块
人工智能·spring boot·函数调用·springai
SomeB1oody4 小时前
【Rust自学】15.2. Deref trait Pt.1:什么是Deref、解引用运算符*与实现Deref trait
开发语言·后端·rust
缘友一世5 小时前
JAVA设计模式:依赖倒转原则(DIP)在Spring框架中的实践体现
java·spring·依赖倒置原则