JavaOne 2010 Related Links

Here are some information that I found on the net about JavaOne 2010. Feel free to comment with additional resources. To start, Oracle posted some video highlights. If you have JavaOne login, you can view the full versions at On Demand site. If not, you can still see some of the contents here. Beyond that, […]

Read more "JavaOne 2010 Related Links"

Enabling gzip HTTP Compression on Glassfish

I followed this blog to configure my instance of glassfish to enable gzip compression for HTTP traffic. Here is my version of the configuration: <property name=”compression” value=”on”/> <property name=”compressableMimeType” value=”text/html,text/xml,text/plain,image/gif,image/jpeg,image/png,text/css,text/javascript,application/json”/> After restarted the sever, I noticed that not all files were compressed. Some css files were compressed while some other css files didn’t. I wonder […]

Read more "Enabling gzip HTTP Compression on Glassfish"