Hi,
I have a filter infront of my JSPs and this seems to be getting called multiple times when I hit a
JSP.
I have tracked this down to images in my page with standard img HTML elements causing the requests. It seems that each image will cause another hit on the filter.
The problem is that the filter does a bit of DB work and that is going to kill my server if traffic builds up.
I realise that my filter
pattern could be changed but really it has to do many different types of real request so I do want it to be /*
Does anyone have any clues as to how this could be stopped.
TIA