具有@Inject的超类中的JavaEE JAX-RS依赖项注入失败

时间:2019-03-20 10:01:26

标签: java java-ee dependency-injection jax-rs ejb

给出:

@Path("call")
public class CallController extends CRUDController<Call> {

    @Inject
    private ICallService service; // implements IService
}

@Local
@Stateless
public abstract class CRUDController<T> implements IController<T> {
    protected IService<T> service;

    // implemented methods of IController<Call>
}

我收到org.glassfish.hk2.api.UnsatisfiedDependencyException:SystemInjecteeImp(...)上没有可用于注入的对象。我已经玩了一段时间了,但是还没有弄清楚:(

有人可以告诉我我在做什么错吗?
非常感谢

0 个答案:

没有答案