Can't ask to parameterize a member of non-generic type

Dear,

My setup is vaadin, mybatis and spring. Now i integrated spring with vaadin with the vaadin tutorial everything works perfect.
But when i’m using @Configurable(preConstruction = true) on a custom component with a Property.ValueChangeEvent method i got the next error on compile time from aspectj.

[ERROR]
 java.lang.IllegalStateException: Can't ask to parameterize a member of non-generic type: com.vaadin.data.Property$ValueChangeListener  kind(simple)

Is there a known sollution for this?

Kind regards,

Ewout

I fixed it by tottaly split my vaadin and spring classes.

I’m working with the mvp pattern and i do everything that is responsable for my backend and bussiness layer trough my interfaces.
No more @configurable or autowiring in my vaadin classes.

Bye bye aspectj