前言
对于一个接口,如果有好几个类继承它,注入的时候@recources 与 @Autowired 还是有点区别的
扩展知识
springmvc中的@Resource与@Autowired注解的区别
代码
interface
package com.cn.artifact.Service;
public interface Human {
void speak();
}
ManImpl
package com.cn.artifact.Service;
import org.springframework.stereotype.Service;
@Service
public class ManI