1

我正在尝试在 Spring Boot 应用程序中使用 Spring 数据和存储库,但在编译项目时出现错误。

这是我的实体:

package fr.investstore.model;

import javax.persistence.Id;
...

@Entity
public class CrowdOperation {

    @Id
    @GeneratedValue(strategy=GenerationType.IDENTITY)
    public Long id;

    @Enumerated(EnumType.STRING)
    public RepaymentType repaymentType;

    ...
}

以及相应的存储库:

package fr.investstore.repositories;

import org.springframework.data.repository.CrudRepository;
import org.springframework.data.repository.PagingAndSortingRepository;
import org.springframework.stereotype.Repository;

import fr.investstore.model.CrowdOperation;


public interface CrowdOperationRepository extends CrudRepository<CrowdOperation, Long> {

}

Autowired我在 WS 控制器中使用它,通过注解生成存储库:

package fr.investstore.ws;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RequestMapping;
...

@Controller
@EnableAutoConfiguration
public class SampleController {

    @Autowired
    private CrowdOperationRepository crowdOperationRepository;


    @RequestMapping(path = "/", method = RequestMethod.GET)
    @ResponseBody
    public String getOperations(@RequestParam(required=true, defaultValue="Stranger") String name) {
        crowdOperationRepository.save(new CrowdOperation());
        return "Hello " + name;
    }
}

以及应用程序的代码:

package fr.investstore;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

import fr.investstore.ws.SampleController;

@SpringBootApplication
public class InvestStoreApplication {

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

但是在编译项目时,我得到:


应用程序无法启动


说明:fr.investstore.ws.SampleController 中的字段 crowdOperationRepository 需要找不到类型为“fr.investstore.repositories.CrowdOperationRepository”的 bean。

行动:考虑在您的配置中定义“fr.investstore.repositories.CrowdOperationRepository”类型的 bean。

Spring不会通过接口自动为存储库生成一个bean吗?我该如何解决这个问题?

编辑:我也尝试将Repository注释(从org.springframework.stereotype.Repository)放到 上CrowdOperationRepository,但我得到了同样的错误

4

3 回答 3

6

在创建 spring-boot 应用程序时,我们需要记住一些要点,例如

  1. 始终将主类(带有`@SpringBootApplication 注解的类)保留在顶级包中,其他类应位于子包下。

  2. 始终使用适当的注释标记您的 bean 类,例如所有存储库都应该用@Repository注释标记,所有服务实现类都应该用 标记@Service,其他组件类应该用 标记@Component,定义我们的 bean 的类应该标记为@Configuration

  3. 启用您正在使用的功能,例如@EnableJpaRepositories, @EnableTransactionManagement, @EnableJpaAuditing,这些注释还提供了让我们定义 spring 需要扫描的包的功能。

因此,在您的情况下,您需要InvestStoreApplication使用@EnableJpaRepositories注释CrowdOperationRepository@Repository.

于 2017-12-25T11:38:51.993 回答
2

您必须告诉您的 Spring Boot 应用程序加载 JPA 存储库。

将此复制到您的应用程序类

它会自动扫描您的 JPA 存储库并将其加载到您的 spring 容器中,即使您没有使用 @Repository 定义您的接口,它也会将该 bean 连接到您的依赖类中。

@EnableJpaRepositories(basePackages = { "fr.investstore.repositories" })
于 2017-12-23T08:02:22.840 回答
0

感谢@JBNizet 的评论,这使它工作。

我创建了这个答案,因为他没有:

替换 SpringApplication.run(SampleController.class, args); 使用 SpringApplication.run(InvestStoreApplication.class,args);。并删除控制器上无用的 @EnableAutoConfiguration。

于 2021-03-28T11:43:47.507 回答