项目问题
git
GitLab: You are not allowed to push code to this project.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
没有push权限
注入service
当容器中存在多个 Bean 的类型与需要注入的相同时,注入将不能执行,我们可以给 @Autowired 增加一个候选值,做法是在 @Autowired 后面增加一个 @Qualifier 标注,提供一个 String 类型的值作为候选的 Bean 的名字
@Autowired(required=false) //注入不成功也不会发生异常
@Qualifier(“AImpl”)
— 共有 2 条评论 —
ddoonnaahhuuee: @十月阳光 嗯哪 3年前
十月阳光: @Qualifier我知道。 不过这样看来,使用@Resource(name=”“)更值得推荐了 3