Environment Entries
Declare in web.xml<env-entry> <env-entry-name>SMTP Host Name</env-entry-name> <env-entry-value>homer.springfield.ma.us</env-entry-value> <env-entry-type>java.lang.String</env-entry-type></env-entry> Use this code in Jsp/ServletsInitialContext ic = new InitialContext();Context ctx = ic.lookup("java:comp/env");String hostname = (String)(ctx.lookup("SMTP Host"));
No comments:
Post a Comment