AppFuse 2.0.2 only?

6 messages Options
Embed this post
Permalink
David Whitehurst

AppFuse 2.0.2 only?

Reply Threaded More More options
Print post
Permalink
Does this require more than 2.0.1 to 2.0.2 appfuse version change in POM.  I did that and still failing.  I suppose my clean was what started this.

[INFO] Compiler errors :
error at Table table = AnnotationUtils.findAnnotation(User.class, Table.class);
                              ^^^^^^^^^^
/Users/davidwhitehurst/Work/Java/lb/src/main/java/com/freightdaddy/dao/hibernate/UserDaoHibernate.java:85:0::0 The method findAnnotation(Method, Class<A>) in the type AnnotationUtils is not applicable for the arguments (Class<User>, Class<Table>)



David
Matt Raible-3

Re: AppFuse 2.0.2 only?

Reply Threaded More More options
Print post
Permalink
I believe this has been fixed - I'd search JIRA for a solution.

Matt

On Jan 25, 2009, at 5:21 PM, David Whitehurst <[hidden email]>  
wrote:

> Does this require more than 2.0.1 to 2.0.2 appfuse version change in  
> POM.  I did that and still failing.  I suppose my clean was what  
> started this.
>
> [INFO] Compiler errors :
> error at Table table = AnnotationUtils.findAnnotation(User.class,  
> Table.class);
>                               ^^^^^^^^^^
> /Users/davidwhitehurst/Work/Java/lb/src/main/java/com/freightdaddy/
> dao/hibernate/UserDaoHibernate.java:85:0::0 The method  
> findAnnotation(Method, Class<A>) in the type AnnotationUtils is not  
> applicable for the arguments (Class<User>, Class<Table>)
>
>
>
> David

---------------------------------------------------------------------
To unsubscribe, e-mail: [hidden email]
For additional commands, e-mail: [hidden email]

David Whitehurst

Re: AppFuse 2.0.2 only?

Reply Threaded More More options
Print post
Permalink
I'm going there next.  I just up'ed appfuse and spring and deleted my repository items but still having issue.   I'll get it. 


Thanks,

David

On Sun, Jan 25, 2009 at 7:54 PM, Matt Raible <[hidden email]> wrote:
I believe this has been fixed - I'd search JIRA for a solution.

Matt


On Jan 25, 2009, at 5:21 PM, David Whitehurst <[hidden email]> wrote:

Does this require more than 2.0.1 to 2.0.2 appfuse version change in POM.  I did that and still failing.  I suppose my clean was what started this.

[INFO] Compiler errors :
error at Table table = AnnotationUtils.findAnnotation(User.class, Table.class);
                             ^^^^^^^^^^
/Users/davidwhitehurst/Work/Java/lb/src/main/java/com/freightdaddy/dao/hibernate/UserDaoHibernate.java:85:0::0 The method findAnnotation(Method, Class<A>) in the type AnnotationUtils is not applicable for the arguments (Class<User>, Class<Table>)



David

---------------------------------------------------------------------
To unsubscribe, e-mail: [hidden email]
For additional commands, e-mail: [hidden email]


David Whitehurst

Re: AppFuse 2.0.2 only?

Reply Threaded More More options
Print post
Permalink
APF-1072.  It's still open.  I'll be fixing this one.  It's a compilation error with AnnotationUtils.  I'm a little confused on the <A> is an extension of java.lang.annotation interface.   Good problem to have anyhow.

:-)

David

On Sun, Jan 25, 2009 at 7:58 PM, David Whitehurst <[hidden email]> wrote:
I'm going there next.  I just up'ed appfuse and spring and deleted my repository items but still having issue.   I'll get it. 


Thanks,

David


On Sun, Jan 25, 2009 at 7:54 PM, Matt Raible <[hidden email]> wrote:
I believe this has been fixed - I'd search JIRA for a solution.

Matt


On Jan 25, 2009, at 5:21 PM, David Whitehurst <[hidden email]> wrote:

Does this require more than 2.0.1 to 2.0.2 appfuse version change in POM.  I did that and still failing.  I suppose my clean was what started this.

[INFO] Compiler errors :
error at Table table = AnnotationUtils.findAnnotation(User.class, Table.class);
                             ^^^^^^^^^^
/Users/davidwhitehurst/Work/Java/lb/src/main/java/com/freightdaddy/dao/hibernate/UserDaoHibernate.java:85:0::0 The method findAnnotation(Method, Class<A>) in the type AnnotationUtils is not applicable for the arguments (Class<User>, Class<Table>)



David

---------------------------------------------------------------------
To unsubscribe, e-mail: [hidden email]
For additional commands, e-mail: [hidden email]



Matt Raible-3

Re: AppFuse 2.0.2 only?

Reply Threaded More More options
Print post
Permalink
Some javascript/style in this post has been disabled (why?)
I believe this is caused by having an old version of one of the Spring JARs. I'd run "mvn dependency:tree" to see if you see any old versions of Spring.

Matt

On Jan 25, 2009, at 6:03 PM, David Whitehurst wrote:

APF-1072.  It's still open.  I'll be fixing this one.  It's a compilation error with AnnotationUtils.  I'm a little confused on the <A> is an extension of java.lang.annotation interface.   Good problem to have anyhow.

:-)

David

On Sun, Jan 25, 2009 at 7:58 PM, David Whitehurst <[hidden email]> wrote:
I'm going there next.  I just up'ed appfuse and spring and deleted my repository items but still having issue.   I'll get it. 


Thanks,

David


On Sun, Jan 25, 2009 at 7:54 PM, Matt Raible <[hidden email]> wrote:
I believe this has been fixed - I'd search JIRA for a solution.

Matt


On Jan 25, 2009, at 5:21 PM, David Whitehurst <[hidden email]> wrote:

Does this require more than 2.0.1 to 2.0.2 appfuse version change in POM.  I did that and still failing.  I suppose my clean was what started this.

[INFO] Compiler errors :
error at Table table = AnnotationUtils.findAnnotation(User.class, Table.class);
                             ^^^^^^^^^^
/Users/davidwhitehurst/Work/Java/lb/src/main/java/com/freightdaddy/dao/hibernate/UserDaoHibernate.java:85:0::0 The method findAnnotation(Method, Class<A>) in the type AnnotationUtils is not applicable for the arguments (Class<User>, Class<Table>)



David

---------------------------------------------------------------------
To unsubscribe, e-mail: [hidden email]
For additional commands, e-mail: [hidden email]




David Whitehurst

Re: AppFuse 2.0.2 only?

Reply Threaded More More options
Print post
Permalink
I was able to get it to compile with User.class.getEnclosedMethod() ... returning a method-method I suppose but since I dropped my repository IntelliJ won't let me test until it finds springframework.test  I found a comment in the Spring source that might have started this.  I need to get a better picture before I can say I'm comfortable with getEnclosedMethod().

I was tired so I left it for tonight.


David

On Sun, Jan 25, 2009 at 11:39 PM, Matt Raible <[hidden email]> wrote:
I believe this is caused by having an old version of one of the Spring JARs. I'd run "mvn dependency:tree" to see if you see any old versions of Spring.

Matt


On Jan 25, 2009, at 6:03 PM, David Whitehurst wrote:

APF-1072.  It's still open.  I'll be fixing this one.  It's a compilation error with AnnotationUtils.  I'm a little confused on the <A> is an extension of java.lang.annotation interface.   Good problem to have anyhow.

:-)

David

On Sun, Jan 25, 2009 at 7:58 PM, David Whitehurst <[hidden email]> wrote:
I'm going there next.  I just up'ed appfuse and spring and deleted my repository items but still having issue.   I'll get it. 


Thanks,

David


On Sun, Jan 25, 2009 at 7:54 PM, Matt Raible <[hidden email]> wrote:
I believe this has been fixed - I'd search JIRA for a solution.

Matt


On Jan 25, 2009, at 5:21 PM, David Whitehurst <[hidden email]> wrote:

Does this require more than 2.0.1 to 2.0.2 appfuse version change in POM.  I did that and still failing.  I suppose my clean was what started this.

[INFO] Compiler errors :
error at Table table = AnnotationUtils.findAnnotation(User.class, Table.class);
                             ^^^^^^^^^^
/Users/davidwhitehurst/Work/Java/lb/src/main/java/com/freightdaddy/dao/hibernate/UserDaoHibernate.java:85:0::0 The method findAnnotation(Method, Class<A>) in the type AnnotationUtils is not applicable for the arguments (Class<User>, Class<Table>)



David

---------------------------------------------------------------------
To unsubscribe, e-mail: [hidden email]
For additional commands, e-mail: [hidden email]