After creating a custom code formatter in Eclipse, as discussed in my previous post How to create and share Eclipse code style formatter, it is now time to put that code formatter in action. Code formatting should be an automatic
How to solve java.lang.OutOfMemoryError: Java Heap Space
If a program throws the error java.lang.OutOfMemoryError: Java heap space, it simply means that the program while running has exhausted all the heap space and even the garbage collector has not been able to reclaim the heap space from unused
How to increase JVM heap size in Eclipse
As discussed in my blog How to solve java.lang.OutOfMemoryError: Java Heap Space, if a Java program running in Eclipse throws java.lang.OutOfMemoryError: Java heap space, one of the solutions to solve this error is to assign more memory for JVM. Following
How to create and share Eclipse code style formatter
Eclipse has a default Java code formatting profile, known as Eclipse [built-in], which it uses to format code every time you press the combination keys Ctrl + Shift + F (on Windows) and ⌘ + ⇧ + F (on Mac).
How to simulate java.lang.OutOfMemoryError: Java heap space
java.lang.OutOfMemoryError: Java heap space is an error (not an exception) which is thrown by the Java Virtual Machine (JVM) to indicate that it has run out of heap space. You are trying to create new object(s) but the amount of
How to add proxy settings in Eclipse
If you are using Eclipse on your office systems, you need to maintain the proxy server details in Eclipse. Otherwise, when you try to update/install plugins from the Internet, the process will timeout and throw an error. This blog describes
How to install Wildfly in Eclipse
This blog describes how to install Wildfly in Eclipse development environment. Wildfly was formerly known as the JBoss Application Server. JBoss Application Server was originally developed and maintained by the company JBoss Inc. This company was acquired by Red Hat