I have META-INF/context.xml file, which looks something like below
<?xml version='1.0' encoding='utf-8'?>
<Context displayName="Game Application Dev">
<Environment
name="myName"
value="HelloWorldApp"
type="java.lang.String"
description="This is my envName"/>
</Context>
By any chance is it possible to read this myName entry in my .xhtml file without using any bean (which does the explicit jndi lookup). I know this can be done with the jndi lookup, but my requirement is to achieve the same without using any beans.
Edit 1: My Target server : Apache Tomcat