ASPECTJ AND ECLIPSELINK MODEL GENERATION IN STS
I’ve been using Spring Roo together with GWT to create a fairly simple web app. The auto generated queries that Roo produces don’t use the JPA Criteria API. So I decided to throw in EclipseLink model generator.
SWITCHED TO LINUX MINT: FIRST IMPRESSIONS
Impressed with Linux Mint so far, even better than Ubuntu!!
JAVA GARBAGE COLLECTION GUIDE
Introduction to Java Garbage Collection
Understanding garbage collection is crucial for Java application performance optimization. This guide covers essential aspects of GC mechanisms and log interpretation.
FIND AND MOVE CONFLICTED FILES WITH BASH
find . | grep “conflicted” | while read a; do mv “$a” /tmp; done
CHANGE MAVEN LOCAL REPO VIA COMMAND LINE
-Dmaven.repo.local=C:\mydir
HIDE ROWS IN GXT GRID WITH CSS: DEVELOPER GUIDE
Attach a GridViewConfig to the grid, overidding with an impl. that returns a css style of ‘hide’.