| Article: |
Two Servlet Filters Every Web Application Should Have | |
| Subject: | ONJava.com: Two Servlet Filters Every Web Application Should Have [Nov. 19, 2003] | |
| Date: | 2003-11-21 08:09:20 | |
| From: | anonymous2 | |
|
Response to: ONJava.com: Two Servlet Filters Every Web Application Should Have [Nov. 19, 2003]
|
||
|
There are a few important points I'd like to make and they are listed with the more important points first. The first is you should almost always use some sort of caching and compression. The second point, is that it should be easy. And the third point is that it should be flexible.
|
||
Showing messages 1 through 3 of 3.
-
ONJava.com: Two Servlet Filters Every Web Application Should Have [Nov. 19, 2003]
2003-11-22 21:20:24 anonymous2 [View]
-
ONJava.com: Two Servlet Filters Every Web Application Should Have [Nov. 19, 2003]
2003-12-01 01:23:51 anonymous2 [View]
IIS is not very bright when it comes to compression. Bascially they don't seperate it from the Caching part, making all things suddenly have weird cache control headers in their compressed state, when they had none before.
Although... I have used Apache with gzip compression of everything (except jpgs) for 4 years, and have yet to have a problem with IE/x.x.
-
ONJava.com: Two Servlet Filters Every Web Application Should Have [Nov. 19, 2003]
2003-11-24 14:52:26 anonymous2 [View]
If you look at the examples you will notice that compression is only enabled on *.jsp and *.html files...



Your filter may not cause the same problem, but it's something people should be aware of.