1

在我的代码中,我遇到了一个奇怪的问题,即我的一个存储库在我的控制器中没有被识别并在启动期间抛出这个错误。

com.test.pack.controller.ModulesController 中构造函数的参数 0 需要找不到类型为“com.test.pack.repository.ModuleRepository”的 bean。

这是我的控制器

@RestController
@RequestMapping("/modules")
class ModulesController(private val moduleRepository: ModuleRepository) {
    @GetMapping
    suspend fun getAllModules(): = Response(moduleRepository.findAllPurchasableModule().toList())
}

这是我的存储库

interface ModuleRepository: Repository<Module, Int> {
    suspend fun getByAccountId(accountId: Long): Flow<Module>
    suspend fun findAllPurchasableModule(): Flow<Module>
}

impl

class ModuleRepositoryImpl(private val databaseClient: DatabaseClient) : ModuleRepository {

    override suspend fun getByAccountId(accountId: Long): Flow<Module> {

        return databaseClient.execute("SELECT * FROM mod WHERE actid = :acct").bind("accountId", acct).asType<Module>().fetch().flow()
    }

    override suspend fun findAllPurchasableModule(): Flow<Module> {

        return databaseClient.execute("SELECT * FROM modules").asType<Module>().fetch().flow()
    }
}

这是我的文件夹结构

com
    test
        pack
            controller
                ModulesController
            repository
                ModuleRepository
                UserRepository
                impl
                    ModuleRepositoryImpl
                    UserRepositoryImpl 

我也在为User存储库做同样的事情并且它正在工作。但是,如果我把它@Repository("moduleRepository")放在impl课堂上,那么它就可以工作。但我不明白这个 ModuleRepository 有什么特别之处,与其他概念相同的概念不适用于这个。

4

1 回答 1

0

作为最佳实践,您应该始终使用 @Repository 和其他注释(如 @Component、@Service 等)以便 Spring 在类路径扫描期间轻松检测并将其作为 bean 在应用程序上下文中注册。

User Repository 工作的原因可能是因为(不包括 moduleRepository )它是当前代码中存在的唯一 Repository 类型 bean。

于 2020-07-04T11:33:44.307 回答