mmoayyed opened a new pull request #290:
URL: https://github.com/apache/syncope/pull/290


   This pull request turns off and disables CGLIB bean proxying for the WA 
module. This is the recommended practice from Spring which would help WA in the 
future to compile better and easier against GraalVM. Without bean proxying, 
bean methods can no longer call each other directly during construction, as 
there is no proxy to intercept. Instead, references either need to be passed as 
auto-wired parameters (the approach used here), or they need to be injected 
into configuration classes using injections. (The latter approach is generally 
more preferable, if the number of injected parameters grows unwieldy) 
   
   Also fixes a bean name typo (missing `e`).
   
   This approach might also be used for #287 as well. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@syncope.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to