gpt4 book ai didi

java - Spring找不到bean

转载 作者:行者123 更新时间:2023-11-30 06:38:49 24 4
gpt4 key购买 nike

我正在学习 Spring,因为它似乎是一个非常强大的框架。我已经做了很多入门指南,现在我正在尝试 this tutorial 。其中,所有类都放在同一个包中,但为了使其更有趣,我尝试根据类(实体、 Controller 等)使用不同的包。我本来打算在测试 REST 服务部分之前对其进行测试,但构建应用程序时出错。这就是我的项目的结构:

project structure

与教程中的类的唯一区别是 initializr utility 附带的标记的 ServletInitializer (其实我用的是STS自带的,不过是一样的)。据我了解,这与问题无关,因此该类的内容无关。

与教程的另一个细微差别是,此处的 Application 类名为 RestServicesApplication,但内容是相同的。

当我尝试构建应用程序(使用 Gradle 的 bootRun 而不是 Maven)时,我收到以下错误消息:

***************************
APPLICATION FAILED TO START
***************************

Description:

Parameter 0 of method init in com.example.restservices.RestServicesApplication required a bean of type 'com.example.repository.AccountRepository' that could not be found.


Action:

Consider defining a bean of type 'com.example.repository.AccountRepository' in your configuration.

:bootRun FAILED

因此,我尝试使用 @Bean 注释 AccountRepository,但它给了我一个编译错误,指出该位置不允许使用该注释。接下来,我尝试使用 @Component 注释(也在 BookmarkRepository 上)并在 RestServicesApplication 中添加 @ComponentScan("com.example") 。之后错误仍然存​​在,但消息更改为

***************************
APPLICATION FAILED TO START
***************************
Description:

Parameter 0 of constructor in com.example.controller.BookmarkRestController required a bean of type 'com.example.repository.BookmarkRepository' that could not be found.

Action:

Consider defining a bean of type 'com.example.repository.BookmarkRepository' in your configuration.

:bootRun FAILED

我向 BookmarkRestController 添加了 @Component 注释,但仍然存在相同的错误消息。我在这里缺少什么?

预先感谢您的回答。

<小时/>

编辑#1

问题涉及的类如下(从我的项目复制,不是教程中的类,尽管差异很小):

RestServicesApplication

package com.example.restservices;

import java.util.Arrays;

import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;

import com.example.entity.Account;
import com.example.entity.Bookmark;
import com.example.repository.AccountRepository;
import com.example.repository.BookmarkRepository;

@SpringBootApplication
@ComponentScan("com.example")
public class RestServicesApplication {

public static void main(final String[] args) {
SpringApplication.run(RestServicesApplication.class, args);
}

@Bean
CommandLineRunner init(final AccountRepository accountRepository,
final BookmarkRepository bookmarkRepository) {
return (evt) -> Arrays.asList(
"jhoeller,dsyer,pwebb,ogierke,rwinch,mfisher,mpollack,jlong".split(","))
.forEach(
a -> {
final Account account = accountRepository.save(new Account(a,
"password"));
bookmarkRepository.save(new Bookmark(account,
"http://bookmark.com/1/" + a, "A description"));
bookmarkRepository.save(new Bookmark(account,
"http://bookmark.com/2/" + a, "A description"));
});
}
}

BookmarkRestController

package com.example.controller;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import com.example.repository.AccountRepository;
import com.example.repository.BookmarkRepository;

@RestController
@RequestMapping("/{userId}/bookmarks")
public class BookmarkRestController {

private final BookmarkRepository bookmarkRepository;
private final AccountRepository accountRepository;

@Autowired
public BookmarkRestController(final BookmarkRepository bookmarkRepository,
final AccountRepository accountRepository) {
this.bookmarkRepository = bookmarkRepository;
this.accountRepository = accountRepository;
}

// @RequestMapping methods...
}

AccountRepository

package com.example.repository;

import java.util.Optional;

import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Component;

import com.example.entity.Account;

@Component
public interface AccountRepository extends JpaRepository<Account, Long> {
Optional<Account> findByUsername(String username);
}

BookmarkRepository

package com.example.repository;

import java.util.Collection;

import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Component;

import com.example.entity.Bookmark;

@Component
public interface BookmarkRepository extends JpaRepository<Bookmark, Long> {
Collection<Bookmark> findByAccountUsername(String username);
}

注意:我添加了导入,以便您可以看到类和注释来自何处

<小时/>

编辑#2

我尝试了另一件事:我重构了我的项目以适应教程,并将所有内容放在同一个包中(com.example.bookmarks)并删除了额外的注释。该项目可以编译,但当我运行该项目时,我在尝试访问 REST 服务时收到 404 HTTP 状态。我仍然有兴趣让它以我原来的结构运行,但我想让您知道这种重构使项目能够正常工作。

最佳答案

要让 Spring 创建一个实现 JpaRepository 接口(interface)的 bean,您需要使用 Spring JPA 命名空间并使用适当的元素激活存储库支持。在 XML 中:

<jpa:repositories base-package="com.example.repository" />

在注释中:

@EnableJpaRepositories

参见this docs

这会扫描 com.example.repository 下面的所有包以查找扩展 JpaRepository 的接口(interface),并为其创建一个由 SimpleJpaRepository 的实现支持的 Spring bean。 。

关于java - Spring找不到bean,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44752833/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com