相当于在java中使用@Autowired接口

时间:2016-03-08 02:30:23

标签: java spring google-reflections

我有一个接口ITestClass..and有一些方法实现了ItestClass..While在春天使用如果我使用@Autowired ITestClass itestClass,spring将找到实现的类并在runTime..how期间从该类调用相应的方法如果没有弹簧而没有使用反射,那是可能的。

2 个答案:

答案 0 :(得分:3)

您使用@Inject 这应该是JEE的标准等价物。

此外,您也可以将它与Spring一起使用。 :)

答案 1 :(得分:0)

您可以使用CDI@Inject注释。

查找实现接口的类的概念和过程。换句话说就是Dependency Injection

通常,CDIJEE environment中应用的规范。