当前位置: 代码迷 >> J2EE >> spring 注解 @Autowired 和 @Inject 两个功能是一样的吗解决思路
  详细解决方案

spring 注解 @Autowired 和 @Inject 两个功能是一样的吗解决思路

热度:263   发布时间:2016-04-22 01:19:59.0
spring 注解 @Autowired 和 @Inject 两个功能是一样的吗
@Autowired 和 @Inject 这两个注解的功能是不是一样的, @Autowired 只能基于类型进行注入吗?@Inject又是怎么样进行注入的?各位高手,指教下啊

------解决方案--------------------
@Inject没怎么用过,是JSR330的注解。@autowired是spring的注解,根据类型自动匹配的。
------解决方案--------------------
基本一样,
@autowired是spring的东西,按照名字,类型的先后顺序进行注入
话说spring没有@Inject吧,那是struts2的东西吧???只注入由struts2及objectFactory里面的东西,一般来说,效果和spring差不多,因为struts2的objectFactory里就是spring容器
  相关解决方案