In a Java EE 6 Web application, I would like to access a deployment parameter (a string value) from within an EJB
.
I know that I can define a Context Parameter in web.xml
descriptor, and I'll be able to access it through javax.faces.context.ExternalContext#getInitParameterMap(), when I am in a JSF
bean, and through getServletContext() from within a Servlet
, but this is not the case, indeed, because I am in an EJB
.
So, the question is: is there any standard (and possibly clean) way to accomplish this goal?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…