[appfuse-user] Struts Menu Details for http://demo.appfuse.org/appfuse-spring/mainMenu.html

2007-08-07 Thread PeteTh
Hi there, I have a question about the particular Struts Menu used in the Demo at :- http://demo.appfuse.org/appfuse-spring/mainMenu.html Where can I find the source code and configuration for this Side Nav Bar Menu ? When I create an Appfuse SpringMVC or Struts Archetype I always get a Tabbed

[appfuse-user] help basic beginners error

2007-02-08 Thread PeteTh
Hi there, I'm trying the quick start guide (I was keen to see how AppFuse uses Cargo etc), but when I try :- mvn archetype:create -DarchetypeGroupId=org.appfuse -DarchetypeArtifactId=appfuse-basic-spring -DremoteRepositories=http://static.appfuse.org/repository -DarchetypeVersion=1.0-m3 -DgroupI

[appfuse-user] mvn error during first build (java.lang.ClassCastException: java.io.File )

2007-02-08 Thread PeteTh
Hi there, after create archetype using appfuse-basic-spring , mvn integration-test is giving an error during the resources:testResources phase :- Any ideas ? [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.1:testResources' --> [DEBUG] (f) filters = []

[appfuse-user] Type safety and generics in Service

2007-02-14 Thread PeteTh
The examples in Tutorial show public class PersonManagerImpl implements PersonManager { private PersonDao dao; declaring the dao like this means the methods have to do a cast :- public Person getPerson(final Long id) { return (Person) dao.get(id); } I though