作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是 Spring Boot 应用程序。我遇到了异常。如何解决它请帮助我 我的 Controller 类是
import edu.sample.model.Item;
import edu.sample.service.ItemService;
@ComponentScan(basePackages = "edu.*")
@RestController
public class ItemController {
@Autowired
@Qualifier(value="itemService")
private ItemService itemService;
@RequestMapping(value = "/getAllItems", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<List<Item>> getAllItems() {
List<Item> items = itemService.getAllItems();
return new ResponseEntity<List<Item>>(items, HttpStatus.OK);
}
}
服务类别是
@Service
public class ItemServiceImpl implements ItemService {
@Autowired
ItemDAO itemDAO;
@Override
public String addItem(Item item) {
return itemDAO.addItem(item);
}
@Override
public String deleteItem(Integer id) {
return itemDAO.deleteItem(id);
}
@Override
public void updateItem(Item item) {
}
@Override
public List<Item> getAllItems() {
return itemDAO.getAllItems();
}
}
和 DAO 类
@Resource
public class ItemDAOImpl implements ItemDAO {
@PersistenceContext
EntityManager entityManager;
@Override
public String addItem(Item item) {
entityManager.persist(item);
return item.getName();
}
@Override
public String deleteItem(Integer id) {
String name=entityManager.find(Item.class, id).getName();
entityManager.remove(id);
return name;
}
@Override
public void updateItem(Item item) {
}
@Override
public List<Item> getAllItems() {
return entityManager.createQuery("from Item").getResultList();
}
}
我收到此异常消息:
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'itemController': Unsatisfied dependency expressed through field 'itemService': No qualifying bean of type [edu.sample.service.ItemService] found for dependency [edu.sample.service.ItemService]: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true), @org.springframework.beans.factory.annotation.Qualifier(value=itemService)}; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [edu.sample.service.ItemService] found for dependency [edu.sample.service.ItemService]: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true), @org.springframework.beans.factory.annotation.Qualifier(value=itemService)}
最佳答案
您必须使用限定符 "itemService"
来命名 ItemServiceImpl
,如下所示:
@Service("itemService")
public class ItemServiceImpl implements ItemService {
...
关于java - org.springframework.beans.factory.UnsatisfiedDependencyException ,没有类型 [edu.sample.service.ItemService] 的合格 bean,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39173147/
我是 DDD 的新手,正在考虑在我的项目中使用这种设计技术。 然而,让我对 DDD 印象深刻的是这个想法是多么的基本。与 MVC 和 TDD 等其他设计技术不同,它似乎不包含任何突破性的想法。 例如,
我正在尝试理解 elementFormDefault="qualified/unqualified" 的含义在嵌入 WSDL(SOAP 1.1、WSDL 1)的 XML 模式中。 例如,我在 WSDL
我有一段代码,它使用 iostreams 的 xalloc 和 pword 将各种类型的标志存储为指针。由于 pword 公开了一个 void*&,我有一个简单的包装器来通过旧的 C 转换公开存储的类
我是一名优秀的程序员,十分优秀!