from http://developer.yahoo.com/performance/rules.html
Best Practices for Speeding Up Your Web Site
The Exceptional Performance team has identified a number of best practices for making web pages fast. The list includes 34 best practices divided into 7 categories.
Filter by category:
Content
Server
Cookie
CSS
Javascript
Images [...]
refer to: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4968789
Another rule for developing Java: DO NOT put you project in a folder whose absolute path contains any space…
This story tells us, if an issue exists, it persists.
Just discover that when coding the following into style sheet:
table { border-collapse: collapse; } th, td { position: relative; border: 1px solid #eee; }
In Firefox 3, top and right borders of each table cell will disappear.
In IE 7, borders could not collapse.
Don’t know why this happened, need to do a little [...]
Please refer to http://www.jboss.org/community/docs/DOC-12185
1. Configure the web application for security by adding constraints to the web deployment descriptor.
<security-constraint> <web-resource-collection> <web-resource-name>All resources</web-resource-name> <description>Protects all resources</description> <url-pattern>/*</url-pattern> </web-resource-collection> <auth-constraint> <role-name>WebAppUser</role-name> </auth-constraint> </security-constraint> <security-role> <role-name>WebAppUser</role-name> </security-role> <login-config> <auth-method>BASIC</auth-method> <realm-name>Test Realm</realm-name> </login-config>
2. Configure the jboss-web.xml file to point to the “my-web” application.
<security-domain>java:/jaas/my-web</security-domain> [...]
-
Articles
- October 2012
- May 2012
- April 2012
- March 2012
- February 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
-
Meta