Intellij IDEA:找不到“JdbcTemplate”类型的bean

问题描述 投票:0回答:2

Intellij IDEA 15.0.3 表示 JdbcTemplate bean 不存在。

idea error

这是一个 Spring Boot 项目,因此所有需要的 bean 都应该在 boot 内部创建。它工作正常,我可以与我的数据库交互,但 IDEA 将其标记为错误。 我该如何修复它?

spring-boot-starter-jdbc位于pom.xml中; Facets包含Spring;项目 模块具有所有需要的依赖项; Spring引导版本是1.3.1

java spring spring-boot intellij-idea jdbctemplate
2个回答
6
投票

在Intellij IDEA 2016.1.2之后,点击Help->Edit Custom Properties,用

idea.spring.boot.filter.autoconfig=false
添加新行并重新启动IDE,即可解决问题。 您可以在https://youtrack.jetbrains.com/issue/IDEA-139669

查看详细信息

0
投票

转到文件 -> 项目结构 -> Facets。确保给定模块具有 Spring Boot 方面,并且所有配置类都添加到

Spring Appliction Context
组中。

© www.soinside.com 2019 - 2024. All rights reserved.