0
我正在開發一個JAX-RS項目。 我使用澤西島,Weld和DeltaSpike。注入澤西島,焊接和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
我懷疑這是問題的根源。你如何部署到玻璃魚? –
我不是針對GF的。我的戰爭是針對Apache Tomcat的。 –