如何在不传递ServletContext对象的情况下检索应用程序参数?

时间:2009-01-02 11:20:59

标签: web-applications tomcat parameters

我已在 web.xml 文件中为我的webapp定义了几个应用程序参数,如下所示:

<context-param>
    <param-name>smtpHost</param-name>
    <param-value>smtp.gmail.com</param-value>
</context-param>

如果我有一个 ServletContext Object对象,我可以轻松访问它们。例如在我的Struts动作类中。

ServletContext ctx = this.getServlet().getServletContext();
String host = ctx.getInitParameter("smtpHost");

如何在不传递ServletContext对象的情况下检索应用程序参数?

1 个答案:

答案 0 :(得分:1)

Singleton + JNDI?

您可以将对象声明为webapp中的资源:

 <resource-ref res-ref-name='myResource' class-name='com.my.Stuff'>
        <init-param param1='value1'/>
        <init-param param2='42'/>
 </resource-ref>

然后,在你的com.my.stuff类中,你需要一个构造函数和两个用于param1和param2的“setter”:

package com.my;
import javax.naming.*;

public class Stuff
{
     private String p;
     private int i;
     Stuff(){}
     public void setParam1(String t){ this.p = t ; }
     public void setParam2(int x){ this.i = x; }
     public String getParam1() { return this.p; }
     public String getParam2(){ return this.i; }
     public static Stuff getInstance()
     {
         try 
         {
             Context env = new InitialContext()
                .lookup("java:comp/env");
             return (UserHome) env.lookup("myResource");
         }
         catch (NamingException ne)
         {
             // log error here  
             return null;
         }
     }
}

然后,代码中的任何位置:

...
com.my.Stuff.getInstance().getParam1();

绝对有点过度和低效,但它有效(并且可以优化)