| Author |
Filter mapping for static files
|
Maneesh Godbole
Saloon Keeper
Joined: Jul 26, 2007
Posts: 8441
|
|
I have a Tomcat hosted app. I wish to log the IPs of the clients.
I have a static index.html file which I have defined in my web.xml <welcome-file-list>
Now I wrote a simple tracker filter with the following doFilter
and modified my web.xml to
I tried changing the url-pattern to /html /.html and /*html. I do not see the logged information.
What am I doing wrong?
|
[Donate a pint, save a life!] [How to ask questions] [Onff-turn it on!]
|
 |
Maneesh Godbole
Saloon Keeper
Joined: Jul 26, 2007
Posts: 8441
|
|
Update: Though I am using Tomcat for dev, it is a Google App Engine project. GAE caches and serves static resources to enhance efficiency. I modified the appengine-web.xml to exclude the html file and I can see the IP in the log.
So essentially the url-pattern /* or even/Test.html is correct.
|
 |
 |
|
|
subject: Filter mapping for static files
|
|
|