Recent Forum Posts
From categories:

If you try to hot-deploy a WAR file to Tomcat on Windows, you often encounter file locking issues. Windows won’t let Tomcat undeploy the old app because files are locked by the OS. Here is a fix:

Edit %CATALINA_HOME%\conf\context.xml. Find the root <Context> and add these two attributes:

<Context antiJARLocking="true" antiResourceLocking="true">

Now you can copy updated WAR files to your deploy directory and Tomcat will remove the old app and hot-deploy your new app. I’m using this on Tomcat 5.5.11 without any trouble.

I would vote for JQuery.

The yahoo UI library is cool, but it is slow and sometimes too complicated. Extension JS is another library built on top of such libraries. And it almost makes JavaScript just like Java.

You can find it here. [http://www.extjs.com]
Read all about JQuery here. [http://www.jquery.com]

JQuery is brilliant in terms of it's simplicity, speed and ease of learning. You can ask just about any questions on JQuery here and we would try to answer your questions.

Ext JS is also being used extensively at our end. We should be able to help you in case of a need. All you need to do is do a post!

Best libraries for JS by Boney SekhBoney Sekh, 23 Jan 2008 09:48
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License