我正在开发一个 JAX-RS 项目。我使用 Jersey、Weld 和 DeltaSpike。
@Path("test")
public class TestResource {
@GET
@Path("now")
public String now() {
return new Date().toString();
}
@GET
@Path("myProperty")
public String myProprety() {
return myProperty;
}
@Inject
@ConfigProperty(name = "my.proprety")
private String myProperty;
}
当我尝试时GET /test/myProperty
,我得到了。
org.glassfish.hk2.api.UnsatisfiedDependencyException: There was no object available for injection at