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
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
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 = []
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