Announcement: You can find the guides for Commerce 7.5 and later on the new Elastic Path Documentation site. This Developer Center contains the guides for Commerce 6.13.0 through 7.4.1.Visit new site

This version of Elastic Path Commerce is no longer supported or maintained. To upgrade to the latest version, contact your Elastic Path representative.

Settings

Settings

In Elastic Path Commerce 6.1, most application settings were moved from the web applications' commerce-config.xml files to the database. These settings can now be edited from the Commerce Manager client.

In addition, some new services were created to facilitate retrieval and storage of setting related information.

The new settings framework also provides fine-grained control over when setting changes are applied to the system. In the past, most setting changes required restarting the server. Now, when the setting change is applied depends on how you've configured its refresh strategy.

Setting types

There are four setting types:

  • system settings: these settings apply globally across the system. For example, the assets folder location is a system setting.
  • store-specific settings: these settings can be configured differently for individual stores. For example, the theme setting is store-specific; each store can have a different value for this setting.
  • application-specific settings: these settings can be configured differently for different applications. In Elastic Path, there are some settings that can have different values depending on whether the context is a web service, one of the web applications (storefront, commerce server, search server), or the Commerce Manager client.
  • search settings: search settings are used to configure the search indexes. These settings can be configured differently for each combination of store, application, and search index.

Refresh strategies

Application administrators can change setting values at any time. However, changes are not necessarily applied immediately. In many cases, applying changes immediately would not be desirable, but in others it would. Administrators have complete control over when setting changes take effect. Note: Only settings that affect end user experience have a refresh strategy. Other settings are updated as required. Out of the box, there are four refresh strategies:

  • application: settings that use the application refresh strategy are only applied after the application is restarted. Prior to 6.1, this was the strategy used by most settings, since many of them were stored in properties files and XML configuration files that are only read when the web application is started. Many of these settings are now in the database, which means that other refresh strategies are now available.
  • session: settings that use the session refresh strategy do not change during the lifetime of the user's session. If an administrator changes the setting value, users will not see the change until their session cookie is removed or expires and a new session is created. This strategy is used for settings that need to remain consistent during the course of a user's session. For example, the COMMERCE/STORE/CATALOG/catalogViewPagination setting sets the number of rows to display in the storefront catalog view. If this setting changed while a user was browsing the catalog, it could cause some rows to not appear, or the number of result pages might suddenly change. But because this setting uses the session refresh strategy, these problems will not occur; the change is only applied to sessions created after the setting value was changed.
  • interval: settings that use the interval refresh strategy are cached for a specified period of time. Users do not see changes until the cache expires.
  • immediate: settings that use the immediate refresh strategy are not cached; values are updated immediately. As soon as the administrator changes a setting that uses this strategy, the change is applied everywhere. This results in faster retrieval times and ensures that the value is always current, but incurs some additional performance overhead because the data is retrieved from the database every time it is requested.
  • Elastic Path assigns refresh strategies based on performance test results and only after careful consideration of the impact on both performance and overall user experience. Before you change the refresh strategy of a setting, make sure you have carefully assessed the impact. Test your changes in development before applying them in a production environment.

Assigning a refresh strategy

To assign a refresh strategy, edit the setting in the Commerce Manager client and add a metadata named sfRefreshStrategy. Then set the value to one of the following:

  • application
  • session
  • interval:timeout=<cache_setting_name>, where <cache_setting_name> is the name of the cache setting that specifies the timeout period.
  • immediate

Database

Settings related information is stored in three tables:

  • TSETTINGDEFINITION: this table contains the definitions of the settings: the path, the description, the default value, etc.
  • TSETTINGVALUE: each setting can have different values in different contexts. For example, the theme setting (COMMERCE/STORE/theme) can have a different value for each store. This table associates the setting values to their setting definitions.
  • TSETTINGMETADATA: each setting can have metadata associated with it. For example, the refresh strategy is implemented as a metadata item. This table associates the setting metadata to their setting definitions.

Setting definitions and values can be added to the database directly through these tables, but the preferred way is to use the new settings service APIs.

SettingsService and SettingsReader

The ep-settings module contains services that allow developers to manage settings in Elastic Path. One of them is the settings service. The com.elasticpath.settings.SettingsService interface provides a set of methods for retrieving, creating, updating, and deleting setting values and setting definitions. The following example shows how to retrieve the value of the pagination setting for a store.

String settingName = "COMMERCE/STORE/CATALOG/catalogViewPagination";

// get the settings service
SettingsService settingsService = this.getSettingsService();

// get the pagination for the specified store
SettingValue settingValue = settingsService.getSettingValue(settingName, storeCode);
String itemsPerPage = settingValue.getValue();

Setting value information is stored in com.elasticpath.settings.domain.SettingValue objects.

The settings service bean is defined in com.elasticpath.core/WEB-INF/conf/spring/service/service.xml. Elastic Path services that require access to settings have been refactored to use this new bean. If you have a custom service that needs access to settings, simply inject this bean into your service's bean definition.

The SettingsReader interface exposes most of the same functionality but does not support writing. If you do not need to update setting information, use the SettingsReader interface.

Warning:

Whenever possible, you should be using instances of com.elasticpath.settings.impl.CachedSettingsReaderImpl to read settings. SettingsServiceImpl ignores the refresh strategy and bypasses caching, which can have a negative impact on performance.

SettingFactoryBean

You can also inject a setting value directly from Spring using the SettingFactoryBean. This is easier than injecting the SettingsReader into your class and hand-coding the calls to read the value. The following example shows a bean definition that injects a settings value for the value of a bean property:

<import resource="classpath:spring/settings/ep-settings.xml" />

<bean id="beanWithPropertyHoldingSettingValue" class="com.something.YourBean">
     <property id="valueFromSettingsDb">
          <bean parent="settingFactoryBean">
               <property name="path" value="PATH/TO/SETTING/value" />
          </bean>
     </property>
</bean>