Book review: JBoss AS 5 Development by Francesco Marchioni

I’ve been reading JBoss AS 5 Development by Francesco Marchioni published by Packt Publishing. I must say that I quite enjoyed the book because it is complementing my knowledge perfectly. I know Java EE 5 and 6 quite well, I’ve been working on it, promoting it, yada yada yada. But when it comes to details … [...]

Getter / Setter generation in Java

Eclipse or IntelliJ typically generate getters and setters this way: public class Month { private String name; public String getName() { return name; } public void setName(String name) { … [...]