Creating and configuring your custom store

HCL Commerce stores are considered remote stores, as they can be deployed anywhere outside the HCL Commerce server. Stores communicate with the HCL Commerce server by using REST API calls, taking advantage of services that are provided by the HCL Commerce REST API.

You can create and configure your custom store in your Externalized Customization workspace through the configuration and execution of a Gradle script. You can then configure your store assets, sample data, and use your Externalized Customization workspace to customize that store.

Store assets

The following assets are used when creating and configuring your custom store:
  • Static resource files, such as JSP, JavaScript, and image files in the crs-web archive.
    The following screen capture shows the structure of the crs-web archive:
    crs-web
    Where the WebContent directory contains the static resource files for the AuroraB2BStorefrontAssetStore, AuroraStorefrontAssetStore, and ExtendedSitesCatalogAssetStore sample stores.

    The crs-web project in your Externalized Customization workspace acts as your customized store web project and as your storefront asset store template. Therefore, it contains all the required files for your store, and also copies them to your target folder when you run the addStore Gradle script. For more information about where the store assets are located and how they are used in the store, see Store assets.

  • Bootstrap and sample data are in the WCDE_installdir/starterstores/DataTemplate.zip file.
    The following screen capture shows the structure of the DataTemplate.zip file:
    DataTemplate.zip
    Where bootstrap and sample data files exist for the sample stores and business models.

    The DataTemplate.zip file is then used by the RemoteDataload scheduler job to populate your store's bootstrap data and optionally your store's sample data. For more information about what the sample data looks like when browsing the storefront, see Aurora starter store.

    To use your own custom data template file, create the ZIP file in the WCDE_installdir/starterstores directory, and then specify the file name as the dataTemplate parameter value when you run the Gradle script.

When you create your custom store, you can publish stores that are based on the preceding assets, with your choice of store names, inventory models, and sample data.

Differences between HCL Commerce store versions (local vs remote store)

There are several differences to be aware of between HCL Commerce store versions.

In HCL Commerce Version 8 you publish a store archive by using the store publish wizard, where the store is considered a local store. In HCL Commerce Version 9, you create a custom store by using a Gradle script, where the store is considered a remote store
Note: You can have a local store in HCL Commerce Version 9 only if you migrated your store from HCL Commerce Version 8.
The following table summarizes the key differences and considerations between HCL Commerce store versions:
Local store Remote store
Deployment WebSphere Application Server Network Deployment-based deployment. Docker container-based deployment architecture.
MVC framework Struts. Spring.
Database access Direct access to database by using EJB and data beans. No direct access to database. REST calls are made to the Transaction server.
Tag library Local store tag library. Tag library reimplemented. Tag names remain the same, but Java package library names are different.
Important: Some tags, including GetDataTag, ContextDataTag, and StoreConfTag are not supported in the HCL Commerce version 9 (and later) remote store. These tags are only available and used by the local store. If you need to access the configurations in the version 9 (and later) STORECONF table, you can use the OnlineStore services. For more information, refer to JSPExtToInclude.jspf.
Store publish Store publish wizard and SAR files deployed locally. Gradle script and data load deployed remotely on the store server.
JavaScript library Dojo and jQuery. jQuery only.
Cache invalidation Database records exist for all changed data. A scheduler job is used to invalidate the cache registry. Apache Kafka is used to pass the invalidated cache ID from the Transaction server to the store server.

Before you begin

Ensure that you complete the following task: Setting up an HCL Commerce development environment.
Note: You can create custom stores only in your programming environment. After you have created, customized, and tested your custom store, you can deploy it to your authoring or live environment. For more information, see the Deployment documentation.

If you want to use the Aurora starter store as a development base, load the WebSphere Commerce Developer database schema and indicate withSample=sampleData to include the Aurora sample data.

Or, if you want to use your own data, after you create your custom store and populate its bootstrap data, you can use the Catalog Upload feature in the Catalogs tool to upload sales catalogs, categories, catalog entries (products, SKUs, bundles, and kits), attributes, asset references, and more into Management Center.

What to do next

After you have published a store, you can begin to customize and configure your store to meet your business needs. For more information, see First steps after creating a custom store.