AUTO CREATE BUILDER PATTERN CODE IN ECLIPSE
Looking at legacy code with lots of unwiedly constructors. Whilst mocking needing something to create all the boiler plate builder code and found this plugin that works with Juno too. http://code.google.com/p/bpep/
EXCLUDE FIELDS IN JPA WITH XML MAPPINGS: QUICK GUIDE
You’ve got a xml file that you need to persist to the database and you don’t really want to use low level parsing and jdbc.
HOW TO REVERSE ENGINEER HSQL DB WITH SPRING ROO
When “database introspect –schema no-schema-required” after setting up a hsql db you may get “no driver class available”.
REGEX PATTERNS FOR SPRING ROO MOBILE CLEANUP
ScaffoldApp\.isMobile\(\) \? .*\.instance\(\) :
ScaffoldApp\.isMobile\(\) \? .*\.instance\(\)\R\t\t\t\t:
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.