Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.8k views
in Technique[技术] by (71.8m points)

http - Getting server name during servlet initialization

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 initialization of a servlet? How do I do this?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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

<context-param>
    <param-name>serverName</param-name>
    <param-value>foo</param-value>
<context-param>

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

<display-name>foo</display-name>

so that you can obtain it as follows:

String serverName = getServletContext().getServletContextName();

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...