I`m trying to test Spring 3.0RC1 with jsf 1.2.
I`m testing Glassfish v3 with OSGI and Equinox.
When i deploing my webapp, Spring tries to create scoped proxy
of one of my session beans.
Bean is detected by context scanning.
It have
Class does`n have any final declarations, and it visible to classloader.Code:@Component @Scope("session") @Qualifier("UploadController")
this is part from applocationcontext.xml
This code is working ok with Spring DM server.Code:<context:component-scan base-package="ndx.web" annotation-config="true" scoped-proxy="targetClass"/> <context:annotation-config />
Thank you for your help.


Reply With Quote