Re: JSP Editors

2003-11-28 Thread Vidar Langberget
I use the Gel IDE, from www.gexperts.com I've used JBuilder, Eclipse, Netbeans, JCreator and various text editors with syntax highlighting, but nothing mathes Gel IMO. And it's free.. regards, Vidar - Original Message - From: Duncan [EMAIL PROTECTED] To: Tomcat User List [EMAIL

Re: shared object cache

2003-11-24 Thread Vidar Langberget
- Original Message - From: Shapira, Yoav [EMAIL PROTECTED] Howdy, If you're using servlets, getServletContext().setAttribute(myPersistenceManager, myPersistenceManager) would do the trick. If you're using JSPs, it's pageContext.setAttribute(...). Is there any reason why it is

Re: Accessing objects with any servlets, where the object is already pre-created

2003-10-07 Thread Vidar Langberget
Have you noticed any performance problems with storing large amounts of data in the servlet context? I'm developing a cache for my webapp, and I can't decide if I want to use a static class or store cache instances in the servlet context. Vidar - Original Message - From: Tim Funk

Re: Accessing objects with any servlets, where the object is already pre-created

2003-10-07 Thread Vidar Langberget
I understand that you can't put every object you want to cache in the servletcontext, and a holder/wrapper object is needed. But you still need to call servletContext.getAttribute() once for every request. The question is: Does it matter performance-wise if the objects you store in the