i\'ve problems in order to autowire a service in my controller. I\'ve this error:
org.springframework.beans.factory.BeanCreationException: Error creating bean wi
You can use the @Qualifier annotation as follows:
@Qualifier
@Autowired @Qualifier("userService") private UserService userService;