Deployment Error
java.lang.IllegalStateException: Service "LocalCache" has been started with a non-compatible BackingMapManager: [email protected]f
at weblogic.Deployer.run(Deployer.java:76)
at weblogic.Deployer.mainWithExceptions(Deployer.java:63)
at weblogic.tools.maven.plugins.deploy.DeployMojo.execute(DeployMojo.java:300)
...
My web service's coherence-cache-config.xml file didn't specify any LocalCache configuration however, which means it was simply inheriting it from the system-wide configuration and that was causing a conflict.
To stop this conflict all I had to do was add a <scope-name> configuration element to the <cache-config> element like so...
coherence-cache-config.xml
<cache-config ...>
<scope-name>UniqueScopeName</scope-name>
...
</cache-config>
The above is documented here.
Specifies the scope name for this configuration. The scope name is typically used (as a prefix) for all services generated by a cache factory to isolate services indicated in this cache configuration from services created by cache factories with other configurations, thus avoiding unintended joining of services with similar names from different configurations.
-i