[appfuse-user] No source jars for some 2.0.2 libraries

2009-02-26 Thread Kannan Ekanath
Hi Matt/Appfuse owners,Is it possible to also attach source artifacts for generated jars. I think AppFuse kinda overlays two wars, so quite often I have to debug say "BaseControllerTestCase" which is inside the "target\warpath\appfuse-spring-2.0.2.warpath.jar" (I think this is generated) so it woul

Re: [appfuse-user] Error with appfuse:full-source

2009-02-26 Thread Ice-Man
Matt, In Jul/2007 u sad: "AppFuse's full-source plugin doesn't support iBATIS or JPA yet" So what's the status of AppFuse 2.0.2??! Ice-Man 2009/2/19 rob_h > > > Saeed Iqbal wrote: > > > > com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: FUNCTION > > appfuse_light.nextval does not

[appfuse-user] Eclipse an Tomcat

2009-02-26 Thread bini
Matt, I was trying to set up Appfuse .I have downloaded all the stuff and working fine with maven and jetty. Now i am trying through Eclipse IDE and Tomcat. I have followed the tutorial .But when when tried to run the project i am getting '404 page'.I could see my project in theTomcat folder.But

Re: [appfuse-user] Error with appfuse:full-source

2009-02-26 Thread Matt Raible
It does now. On Feb 26, 2009, at 10:27 AM, Ice-Man wrote: Matt, In Jul/2007 u sad: "AppFuse's full-source plugin doesn't support iBATIS or JPA yet" So what's the status of AppFuse 2.0.2??! Ice-Man 2009/2/19 rob_h Saeed Iqbal wrote: > > com.mysql.jdbc.exceptions.MySQLSynta

Re: [appfuse-user] Problem in Windows and tomcat5

2009-02-26 Thread bini
Did u able to fix that? i am getting the same error.I tried on windows with Eclipse and tomcat.Pleas elet me know if u get the solution Developeryours wrote: > > Hi, > Now its working.But now i am working fedora 9 linux.But when i am deployed > in windows vista 404 error coming..can u any one

Re: [appfuse-user] Getting Started

2009-02-26 Thread Michael Horwitz
It all largely depends on exactly what you want to do when the user logs in. If all you want to do is some additional processing, then you can listen for the Application Context event AuthenticationSuccessEvent generated when the user logs in successfully. AppFuse uses Spring security. More docume

Re: [appfuse-user] Eclipse an Tomcat

2009-02-26 Thread Matt Raible
Do you see any errors in the log on startup of Tomcat? Matt On Thu, Feb 26, 2009 at 12:17 PM, bini wrote: > > > Matt, > I was trying to set up Appfuse .I have downloaded all the stuff and working > fine with maven and jetty. > Now i am trying through Eclipse IDE and Tomcat. I have followed the t

Re: [appfuse-user] No source jars for some 2.0.2 libraries

2009-02-26 Thread Matt Raible
You are correct that AppFuse does not contain source JARs for the web classes. This is because we're using Maven's war-overlay feature to allow users to have limited files in their project, but still get the full AppFuse functionality in their project. Over the last year, we've realized this is not

Re: [appfuse-user] Eclipse an Tomcat

2009-02-26 Thread bini
Yes i do.it shows missing of 2jar files.But the jar files it refers is already there in the folder. But i casn see the server as started. I could send u the real name of the jar files tomorrow when i try that from office mraible wrote: > > Do you see any errors in the log on startup of Tomcat?

[appfuse-user] java.lang.NoClassDefFoundError: org/apache/commons/collections/map/LinkedMap

2009-02-26 Thread jackalista
Hi, I'm trying to create a new project and am doing the following steps: 1. run archetype mvn command for modular spring project, which runs successfully. 2. cd into myproject and run "mvn" to do the massive download. 3. it results in this (I'll only list if from the error but can post more of t

Re: [appfuse-user] java.lang.NoClassDefFoundError: org/apache/commons/collections/map/LinkedMap

2009-02-26 Thread jackalista
Oh, sorry, I am using this version of java & mvn on ubuntu 8.04: j...@ghost:~/java/af/foo/spring/myproject$ java -version java version "1.5.0_15" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_15-b04) Java HotSpot(TM) Server VM (build 1.5.0_15-b04, mixed mode) j...@ghost:~/java/af/

Re: [appfuse-user] java.lang.NoClassDefFoundError: org/apache/commons/collections/map/LinkedMap

2009-02-26 Thread Matt Raible
I would run mvn dependency:tree and look for where the older version of commons-collections is coming from. Then exclude it in your pom.xml. Matt On Feb 26, 2009, at 9:04 PM, jackalista wrote: Hi, I'm trying to create a new project and am doing the following steps: 1. run archetype mvn c

Re: [appfuse-user] java.lang.NoClassDefFoundError: org/apache/commons/collections/map/LinkedMap

2009-02-26 Thread jackalista
I ran that and found a reference to commons-collections 3.2, and this reference to commons-collections 2.1: +- commons-dbcp:commons-dbcp:jar:1.2.1:compile [INFO] | | +- commons-collections:commons-collections:jar:2.1:compile Does this mean that the old 2.1 version of commons-collections is a d

Re: [appfuse-user] java.lang.NoClassDefFoundError: org/apache/commons/collections/map/LinkedMap

2009-02-26 Thread Matt Raible
If you have commons-dbcp as a dependency in your pom, exclude commons- collections from it. Either that, or add a dependency for commons- collections:3.2 to your pom. Matt On Feb 26, 2009, at 10:04 PM, jackalista wrote: I ran that and found a reference to commons-collections 3.2, and this

Re: [appfuse-user] java.lang.NoClassDefFoundError: org/apache/commons/collections/map/LinkedMap

2009-02-26 Thread jackalista
I don't see *any* reference to commons nor dbcp at all. So, I'm guessing I need to add a dependency for commons- collections:3.2 as you suggest below. To do this I tried: 1. added this to the properties section that contains other dependency versions (like "Framework dependency versions" and "T