spring 中构造函数的参数0需要一个找不到类型的Bean

pgky5nke  于 2024-01-05  发布在  Spring
关注(0)|答案(2)|浏览(165)

我在生产环境中运行我的spring Boot 应用程序时遇到问题。在本地环境下一切都正常。
这是我的错

  1. Description:
  2. Parameter 0 of constructor in com.tkg.product.service.impl.LocationService required a bean of type 'com.tkg.product.repository.CountryRepositoryInterface' that could not be found.
  3. Action:
  4. Consider defining a bean of type 'com.tkg.product.repository.CountryRepositoryInterface' in your configuration.

字符串
这是我的代码:

位置服务

  1. package com.tkg.product.service.impl;
  2. import com.tkg.product.entity.Country;
  3. import com.tkg.product.entity.Destination;
  4. import com.tkg.product.repository.CountryRepositoryInterface;
  5. import com.tkg.product.repository.DestinationRepositoryInterface;
  6. import com.tkg.product.service.LocationServiceInterface;
  7. import lombok.RequiredArgsConstructor;
  8. import org.springframework.data.domain.Sort;
  9. import org.springframework.stereotype.Service;
  10. import java.util.List;
  11. @Service
  12. @RequiredArgsConstructor
  13. public class LocationService implements LocationServiceInterface {
  14. private final CountryRepositoryInterface countryRepository;
  15. private final DestinationRepositoryInterface destinationRepository;
  16. @Override
  17. public List<Country> countries() {
  18. return countryRepository.findAll(Sort.by(Sort.Direction.ASC, "name"));
  19. }
  20. @Override
  21. public List<Destination> findDestinationByCountry(List<Long> countryIds) {
  22. return destinationRepository.findByCountryIdIn(countryIds);
  23. }
  24. }

CountryRepositoryInterface

  1. package com.tkg.product.repository;
  2. import com.tkg.product.entity.Country;
  3. import org.springframework.data.jpa.repository.JpaRepository;
  4. import org.springframework.stereotype.Component;
  5. @Component
  6. public interface CountryRepositoryInterface extends JpaRepository<Country, Long> {
  7. }


我试着用@Repository替换@Component,但一切都是一样的。
谢谢大家

tzcvj98z

tzcvj98z1#

使用基本包将@EnableJpaRepositories添加到主类

beq87vna

beq87vna2#

退房--> Spring @ComponentScan doesn't work on @Repository
从上面的链接:为了让spring知道哪个DataSource与哪个Repository相关,您应该在@EnableJpaRepositories annotation中定义它。

相关问题