给出:
@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(...)上没有可用于注入的对象。我已经玩了一段时间了,但是还没有弄清楚:(
有人可以告诉我我在做什么错吗?
非常感谢