У меня есть способ запустить приложение:
public void start() throws IOException {
final Map<String, String> initParams = new HashMap<String, String>();
initParams.put("com.sun.jersey.config.property.packages", "com.example");
threadSelector = GrizzlyWebContainerFactory.create(baseUri, initParams);
}
И у меня есть Джерси класс ресурсов:
@Path("/notification")
public class NotificationResource {
// HOW DO I INJECT THIS GUY?
private MySampleCollabolator mySampleCollabolator;
@POST
public void create() {
System.out.println("Hello world");
}
}
Как правильно обращаться с зависимостями? Я хотел бы, чтобы мои ресурсы
общаться с другими объектами, как мне соединить их вместе?