RSS feed
All(28) Eclipse(4) Java(5) JDBC(5) JSP(3) Maven(7) Personal (1) Spring(3) Tomcat(5)
<< January 2008 | Home | March 2008 >>

Eclipse Performance - JVM Setttings and Turning Paging Off in Windows

What are your settings in your eclipse.ini and have you ever thought of turning paging off in windows to make your ide performance improve?

First of all Im running Windows XP SP2 on Dell Latitude D820 which has 4GB of Ram and  Dual Core 1.66Mghz Processor.

My eclipse .ini settings are:

-showsplash
org.eclipse.platform
-framework
plugins\org.eclipse.osgi_3.4.2.R34x_v20080826-1230.jar
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms128m
-Xmx768m
-XX:MaxPermSize=256m
-XX:-UseParallelGC
-XX:+AggressiveOpts
-XX:-UseConcMarkSweepGC

Also recently I read these posts and turned off paging in windows and my ide performance has improved and I have had no wierd other problems with out of memory errors or anything like that.

eclipse.dzone.com/news/what-java-ide-vm-arguments-do-you-use

www.codinghorror.com/blog/archives/000422.html

alan.blog-city.com/windows_virtual_memory.htm

http://www.waltercedric.com/java-j2ee-mainmenu-53/107-eclipse/1298-boost-eclipse-speed-performances.html



Tags :

JavaRebel-Compiling and Reloading Java Code on the fly. Looks like its ready for Development Primetime To Me

We are running tomcat 5.5.25 on jdk 1.5.0_10. Java Rebel is supposed to allow changes to java classes on the fly and then use an IDEs built in background compilation to compile the code so that you can remove the step of having to redeploy a web application through standard apis such as tomcat undeploy and deploy.  

My experience with this overall was that initially I had some issues getting it setup but in response to my blog article I heard from Jevgini Kabanov a developer of javarebel and he helped me get it setup.

Read more...

Tags :

Avoiding Connection Leakage and Boiler Plate Code with Spring JdbcTemplate

With JDBC there is a alot of boilerplate code you must write in order to properly handle the closing of connections. See how to avoid writing this boilerplate code with Spring JdbcTemplate...

Read more...

Spring Aspect Oriented Programming - Adding a simple profiler to your services layer

Here are some simple steps to add a Spring/AspectJ Profiling Aspect to an eclipse java project

Read more...

Upgrading Spring from 1.2 to 2.5

Updating your Spring dependencies and XML Configuration

How easy is it to upgrade from Spring 1.2.X to 2.5.X , pretty easy , see what is involved and why you might want to do it ...

Read more...

Tags :