Stripes Tips
I am just getting into this stripes business but I thought I would post a couple of things I found helpful,
firstly I like maven so I created it using a maven archetype and have been just testing under jetty however repeated changes require repeated redeployments which is time consuming, I found stripes-reload to allow class changes to be picked up automatically.
Loaded it into maven using
mvn install:install-file -Dfile=stripes-reload.jar -DgroupId=duncan -DartifactId=stripes-reload -Dversion=1 -DgeneratePom=true -Dpackaging=jar
handy at this time in development in particular.
firstly I like maven so I created it using a maven archetype and have been just testing under jetty however repeated changes require repeated redeployments which is time consuming, I found stripes-reload to allow class changes to be picked up automatically.
Loaded it into maven using
mvn install:install-file -Dfile=stripes-reload.jar -DgroupId=duncan -DartifactId=stripes-reload -Dversion=1 -DgeneratePom=true -Dpackaging=jar
handy at this time in development in particular.

Comments