创建 bean 时出错

Error creating bean

我有以下 AccountController class

@Controller
@RequestMapping("/rest/accounts")
public class AccountController {
private AccountService accountService;

@Autowired
public AccountController(AccountService accountService) {
    this.accountService = accountService;
}
... implemented methods here
} 

账户服务class如下

public interface AccountService {
public Account findAccount(BigInteger id);

public Account createAccount(Account data);

public Account deleteAccount(String email);

public Boolean updateAccount(String email,String password);

public List<Account> findAllAccounts();

// public Account deleteAccount();

public Customer createCustomer(String accountId, Customer data);

public List<Customer> findCustomersByAccount(String accountId);

}

AccountServiceImpl class如下

@Service

public class AccountServiceImpl 实现 AccountService{

@Autowired
private AccountRepository accountRepo;

@Autowired
private CustomerRepository custRepo;
..implemented methods here 

}

我的servlet.xml有以下组件扫描

<context:component-scan base-package="com.sam.spring.web.rest.mvc" />

/src/resource/context.xml有以下

<context:component-scan base-package="com.sam.spring.web.core.services"></context:component-scan>
<context:component-scan base-package="com.sam.spring.web.core.repositories.jpa"></context:component-scan>

我收到以下错误:

org.springframework.beans.factory.BeanCreationException: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'accountController' defined in file ...

org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [com.sam.spring.web.core.services.AccountService] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency.

我在这个设置中做错了什么?

试试这个 <context:component-scan base-package="com.sam.spring.web.rest.mvc, com.sam.spring.web.core.services, com.sam.spring.web.core.repositories.jpa" />

您在您的上下文中使用 <context:annotation-config/> 吗?