Getting server name during servlet initialization

后端 未结 4 1642
轮回少年
轮回少年 2020-12-19 03:49

I know the request object has a function to get the server name. (i.e. HttpServletRequest.getServerName() )

What if I need the same functionality inside the initiali

4条回答
  •  感情败类
    2020-12-19 04:13

    This information is request based and not strictly application based. It can namely change per request. All you have at hands during servlet initialization is the ServletContext instance which in turn offers methods like getInitParameter(). You could make use of it to access application wide settings.

    So your best bet is to manually set the server name as a context parameter in web.xml

    
        serverName
        foo
    
    

    so that you can obtain it as follows in servlet's init() method:

    String serverName = getServletContext().getInitParameter("serverName");
    

    Another (not recommended) alternative is to set it as display name in web.xml

    foo
    

    so that you can obtain it as follows:

    String serverName = getServletContext().getServletContextName();
    

提交回复
热议问题