I just realized that the ProxyFactory class is deprecated in RestEasy version 3.0.0. Unfortunately, the approach that depreciates this class is not documented anywhere. I used to initialize my services this way, but what's new?
protected static final String URL = "http://localhost:12345"+"/api"; protected static final MyService myService = ProxyFactory.create(MyService.class, URL);
java resteasy
allprog
source share