Come posso trovare cosa "Risorse" fornisce un contenitore Java EE? Posso scoprire questo a livello di programmazione, o c'è documentazione a cui dovrei fare riferimento? (Si noti che il tutorial Java EE è vago su questo argomento.)
Ecco un esempio di ciò di cui sto parlando:
I was reading the Java EE 6 documentation for Using the Timer Service, and I noticed that it doesn't really explain what the TimerService technically is. If you read the documentation, you eventually see an example that a TimerService is obtainable using the
@Resource
annotation.From this I take it that a TimerService is a Resource provided by the container. If it weren't for the example, I never would have realized this without reading a third-party blog post: at no point does the official tutorial say that "TimerService is a container-provided Resource". TimerService is very useful, so I would like to know what other Resources are available.
Per essere chiari, non sto cercando un post sul blog di terze parti, e il tutorial Java EE ufficiale è solo questo, un tutorial: non è completo. E ho controllato brevemente il JSR della piattaforma Java EE 7, ma non sono riuscito a trovare un riferimento a TimerService.
C'è un modo per trovare a livello di programmazione le risorse fornite da un contenitore, oppure esiste un elenco documentato di risorse che un contenitore Java EE deve fornire?