Refactoring in Eclipse DevOps Eclipse 1. Overview On refactoring.com, we read that “refactoring is a disciplined technique for restructuring an existing body of code, altering its internal structure without changing its external behavior.” Typically, we might want to rename variables or methods, or we may want to make our code… Continue Reading eclipse-refactoring

Generate equals() and hashCode() with Eclipse 1. Introduction In this article, we explore generating equals() and hashCode() methods using the Eclipse IDE. We’ll illustrate how powerful and convenient the Eclipse’s code auto-generation is, and also emphasize that diligent testing of code is still necessary. 2. Rules equals() in Java is… Continue Reading java-eclipse-equals-and-hashcode

Eclipse Error: web.xml is missing and failOnMissingWebXml is set to true Java EE Eclipse 1. Introduction In this tutorial, we’ll discuss the common Eclipse error, “web.xml is missing and <failOnMissingWebXml> is set to true“, that we get while creating a web application. 2. Eclipse Error In Java web applications, web.xml… Continue Reading eclipse-error-web-xml-missing