My Java web application contains a startup servlet. Its init() method is invoked, when the web application server (Tomcat) is started. Within this method I need the URL of my web application. Since there is no HttpServletRequest, how to get this information?
| |||||||
feedback
|
|
You can't. Because there is no "URL of an Java web application" as seen "from within". A servlet is not tied to an URL, that is done from the outside. (Perhaps you have a Apache server that connects to a Tomcat - Tomcat can't know about it) It makes sense to ask a HttpServletRequest for its url, because we are speaking of the information of a event (the URL that was actually used to generate this request), it does not make sense to ask for a configuration URL. | |||
|
feedback
|
|
A workaround could be to perform the initialization lazy when the first request arrives. You can implement a filter that do that once, e.g. by storing a | |||
|
feedback
|
|
There is nothing in the servlet API that provides this information, plus any given resource may be bound to multiple URL's. What you CAN do, is to inspect the servlet context when you receive an actual request and see what URL was used. | |||
|
feedback
|
|
Here is how it works for me and probably for most configurations:
| |||
|
feedback
|