My Eclipse preferences
Including color schema & other customizations .epf
The Art of Changing | Confessions of a Pragmatic Intellectual's Mind on The Constant in Life, Change!
Including color schema & other customizations .epf
Have you ever get tired of typing the whole System.out.println when coding in Java? If you are using Eclipse, there is really an easy way not to type the whole phrase. What you need to do is just type sysout and then press ctrl+space and leave the rest to Eclipse. Eclipse will automatically change it…
What you need Eclipse Tomcat Terminal What you have to do Setting up environment First of all you have to add the following lines to your .bash_profile (or .bashrc? what do you think? in mac .bash_profile, in linux .bashrc) export JPDA_ADDRESS=8000 export JPDA_TRANSPORT=dt_socket (You can change the port 8000 to the port of your choice). …
Remote debugging (on a server) Remote debugging is not rocket science (unless you are debugging remotely on a spacecraft or something like that!). I am confident any experienced developer, who has worked with different application / container servers, is familiar with remote debugging and at least tried it once.Each developer might have his/her own definition of what…
Using Mac is not something extra ordinary, everyone is using it nowadays. I find small nice perks in it every now and then which I like to share it with you. This one is about MacPorts and Homebrew. If you are a programmer, developer, software engineer or simply a code guru, you can find number of applications to enhance…
This is something bothering me for a long time. I was working in a project dealing with several dependencies. After some reboots I got an exclamation mark next to the java project, like this one. There are no notes or suggestions on what is going wrong. Cleaning the projects won’t work either. After some research, I have figured…
Have you ever wondered how you can move to the next / previous tab when coding in Eclipse? You might find it very helpful to know that you can do that by using Ctrl + PgUp / PgDn (in windows) for moving to the next or previous tab or by clicking Ctrl + E or…
I have the following setting on my machine: Java 1.6.0_23 Eclipse Hellios Mule 2.2.1 You can find almost a good Mule startup guide at here. However, this configuration guide is not really reliable. So follow the following instructions:Configure your Eclipse with 1.5 version of Java. You need to download Java 1.5 and install it somewhere…
Unlike eclipse that you can easily export your project into a .Jar file, in JDeveloper, it is not that easy. In Eclipse you just need to use the export option on your project and then let it know where you want your .jar file to be. However, in JDeveloper the story is a little bit…