pedrosans opened a new pull request, #1369:
URL: https://github.com/apache/wicket/pull/1369
This change clean up CdiConfiguration and BeanManagerLookup by removing some
logic and state related to fallbackBeanManager and lastSuccessful strategy,
while removing none of the functionality. For instance, it's still possible to
have a fallback BeanManager as a config option if the current lookup fail:
bm = BeanManagerLookup.lookup();
if (bm == null)
bm = customBeamManager;
Another benefit of this change is the reduced number of times the new code
will make expensive (time consuming) JNDI lookups.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]