Fairly new with Hybris and I'm having trouble picking the right set of extensions. Started with a clean hybris 5.3.0.2 commerce suite and I'd like to just have the platform and product cockpit functionality. Tried with the following set of extensions in my localextensions.xml:
admincockpit backoffice cockpit hmc mcc platformhmc productcockpit
But then starting the hybris server fails with: ClassNotFoundException: de.hybris.platform.virtualjdbc.filter.VjdbcConnectionFilter
So it seems like something depends on the virtualjdbc extension, I can of course just add this extension but it seems if I continue doing this I end up adding most of the extensions. Is there a dependency tree between all the different extensions available anywhere?
Any clarification would be much appreciated!
Hi,
all you need to have is:
<?xml version="1.0" encoding="UTF-8"?>
<hybrisconfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="resources/schemas/extensions.xsd">
<extensions>
<path dir="${HYBRIS_BIN_DIR}" />
<extension name="productcockpit"/>
</extensions>
</hybrisconfig>
all the dependencies should be autoloaded.
Cheers, Wojtek
Add a comment