How to index database columns in Hybris

Indexing Overview We know that indexing a database column brings up a very good performance while fetching the records from Database especially when data set is huge. It’s not just in hybris, In any application its good to have indexing on few frequently searching columns of a table. Whenever we create an index on a […]

Share this article on

How to load catalogs using groovy script in hybris

We can use groovy script to check the output at runtime rather than running the application We can run groovy script in HAC We can also use the similar code in our application Let’s see below groovy script to get all the catalogs import de.hybris.platform.catalog.CatalogService; import de.hybris.platform.core.Registry; import de.hybris.platform.catalog.model.CatalogModel; CatalogService catalogService = (CatalogService) Registry.getApplicationContext().getBean(’catalogService’); println(“ […]

Share this article on
Next >