Skip to content

Instantly share code, notes, and snippets.

@gulench
Last active May 17, 2018 06:45
Show Gist options
  • Select an option

  • Save gulench/8117407 to your computer and use it in GitHub Desktop.

Select an option

Save gulench/8117407 to your computer and use it in GitHub Desktop.
All about WebLogic SCA
<!--
- WebLogic: Using Filtering Classloader with
- "<package-name>weblogic.wsee.databinding.*</package-name>"
- in the META-INF/weblogic-application.xml deployment descriptor.
-->
<prefer-application-packages>
<package-name>org.eclipse.persistence.*</package-name>
<package-name>weblogic.wsee.databinding.*</package-name>
</prefer-application-packages>

References

These are some of the rare material that could be found about WebLogic SCA:

Issues

Doc ID 1380209.1 (Oracle Support)

When Using MDP's In WLS SCA, Consumers Do Not Come Up On JMS Destination(1380209.1)

Cause

Weblogic SCA (Service Component Architecture) engine is not using ApplicationConext to instantiate beans. The post processing of beans including proxy, groovy scripting is only included in the ApplicationContext implementation, but not if you are only using XMLBeanDefinitionReader directly.

Solution

Issue has been addressed in patch 12600345.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment