Error creating bean with name'コントローラ名'のエラーに遭遇した場合はどうしますか

1661 ワード

このような問題に遭遇すると,8割の可能性はビジネス実装層が見つからず,ビジネス実装層で@Service注釈を追加するかどうかを調べることである.

Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException:
Error creating bean with name 'userController': Unsatisfied dependency expressed through field 'userService';
nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException:
No qualifying bean of type 'com.boron.service.UserService' available: expected at least 1 bean which qualifies as autowire candidate.
Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
 :service 
spring mvc ,ide :
1.controller
@RestController
@RequestMapping("/user")

2.service

@Service
@Autowired
3.dao  
@Param("")