@Controller.@Service在spring-context-5.1.10.RELEASE.jar包下,所在包如下 @Autowired在spring-beans-5.1.10.RELEASE.jar包下,所在包如下 @Service用在类上,注册为一个bean,bean名称默认为类名称(首字母小写) 也可以手动指定@Service(“abc”)或@Service(value = “abc”) @Autowired优先根据属性类型匹配,根据属性类型只匹配到一个时,则直接使用,不再比较属