我想使用Jooq在postgres数据库中插入数据这是我的服务类
@Service
public class EnvironmentService {
private static final Logger logger = LoggerFactory.getLogger(EnvironmentService.class);
private final DSLContext context;
public EnvironmentService(DSLContext context) {
this.context = context;
}
}
但是我有这个错误
无法自动连线。找不到“DSLContext”类型的bean。
假设您的项目已经配置了
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jooq</artifactId>
</dependency>
您需要将自己的DSLContext配置为@Bean,以便使用它。
根据留档https://www.jooq.org/javadoc/dev/org.jooq/org/jooq/DSLContext.html.
您可以创建传递连接和方言。
例子:
DSLContext create = DSL.using(connection, dialect);
试图在SpringBoot应用程序中创建bean,但出现以下错误“无法自动连线。找不到“InstructionRepository”类型的bean” InstructionRepository在jar中用@Repository注解,是一个扩展Spring数据接口的接口 ScheduleProcessor是一种方法 当我尝试通过传递基本包值来添加@ComponentScan注释时,错误消失了,但是,
我不确定我的代码出了什么问题。我正在学习弹簧靴。但我无法运行应用程序,因为我得到以下错误 模型类 主类:
我正在尝试以下示例 https://github.com/lspil/blog/tree/master/endpoint-authorization-methods/spring-security-endpoint-authorization-new 它工作正常,在 Intellij IDEA 中没有任何错误。但是一旦我在pom.xml中将Spring Boot版本从2.4.4更改为2.7.1,它
无法自动连接。找不到“CustomAuthenticationSuccessHandler”类型的bean
我在创建带有参数的@Bean时遇到问题,这运行得很好,但在intelliJ中,它给出的错误无法自动连线。找不到“String”类型的bean。 我要做什么?我正在尝试创建具有原型作用域的bean,在IntelliJ“无法自动连线。未找到‘String’类型的bean”中出现此错误有谁能帮我解决这个问题吗 这是原型测试的类
我使用的是Spring Data Jpa,这是我的项目结构: 下面是: 以下是: 我使用将注入到,但IntelliJ总是抱怨 无法自动连接。找不到“MyRepository”类型的bean 即使代码能够成功编译并运行。 为什么IntelliJ不能识别这不是一个错误?如何解除Intellij的警告? IntelliJ版本:2018.2.6