Wednesday, November 24, 2010

AppEngine, Maven and Eclipse

First step is to create the maven project:

mvn archetype:create


and select the

gae-archetype-jsp (Archetype for creating maven-gae projects that uses jsp for the view)

archetype.

Then, generate your Eclipse project:

mvn eclipse:eclipse

Create an application on AppEngine. Then, adjust the pom.xml, appengine-web.xml and perhaps the web.xml.
Now, you should be able to copy the app-engine sdk dependencies to your local maven repo:

mvn gae:unpack

and then start the app in your local server:

mvn gae:run

OK!?

Friday, October 22, 2010

Mardao 1.4 is released for download

OK, it's been a while, but now the next version of mardao is released. 1.4 contains one new feature, findBy(Expression... expressions), and one important bug fix, ResultSet.getTimestamp() instead of getDate(). As always, download from sourceforge:
https://sourceforge.net/projects/mardao/files/1.4/

Tuesday, August 3, 2010

Mardao 1.3 is released for download

Including one important bug fix on the findBy(Map args) method, 1.3 is now released and available for download:
https://sourceforge.net/projects/mardao/

Monday, June 14, 2010

Mardao Tutorial

Hi folks,
there is now a tutorial for setting up a mardao project from scratch. Please visit
the project wiki.

Saturday, June 5, 2010

Mardao 1.1 is released for download

So, about a week after the 1.0, next release is due. New features are
  • Support for @Table(name="tblName")
  • Support for @Column(name="colName")
  • Per-table generated CREATE sql scripts
Fixed bugs:
  • Use column names instead of Entity attribute names
Other:
  • More JUnit tests
For more info and downloads: http://mardao.sourceforge.net/

Tuesday, June 1, 2010

Mardao - the Architect's Java DAO generator

Today I released the 1.0 version of mardao, the Architect's Java DAO generator.
It uses your annotated domain objects to generate DAO classes, see image.

For more information and downloads, visit
https://sourceforge.net/projects/mardao