Documentation Home

Broadleaf Multi-Tenant 2.0.4-GA

Released on November 18, 2015

This is the 4th patch release for the Broadleaf Multi-Tenant module.

Noteworthy Updates

Site map configurations do not work in MultiTenant

An optional change has been added to make Site Maps MultiTenant Site aware. This feature, if enabled, requires a schema change. The following steps can be done to enable this feature:

1) Add the following to your site application properties file:

enable.site.map.mt.disc=true

2) The column SITE_DISC is needed in the BLC_SITE_MAP_GEN_CFG table to handle the site discrimination.

This column will have to be manually added based on the syntax of your specific database. As an example, here is the update syntax for MySQL:

alter table BLC_SITE_MAP_GEN_CFG add column SITE_DISC BIGINT;

Made Search Redirects MultiTenant Site Aware

An optional change has been added to make Search Redirects MultiTenant Site aware. This feature, if enabled, requires a schema change. The following steps can be done to enable this feature:

1) Add the following to your site application properties file:

enable.search.redirect.mt.disc=true

2) The column SITE_DISC is needed in the BLC_SEARCH_INTERCEPT table to handle the site discrimination.

This column will have to be manually added based on the syntax of your specific database. As an example, here is the update syntax for MySQL:

alter table BLC_SEARCH_INTERCEPT add column SITE_DISC BIGINT;

An at-a-glance view of the issues that were closed in this release:

Major Bugs(2)

  • Read only behavior for a catalog assigned as a REFERENCE type is not being honored
  • Site map configurations do not work in MultiTenant

Minor Bugs(1)

  • Fix so System Property Row Level Security will only apply to the SystemProperty entity

Enhancements(2)

  • Add support for SystemProperties to check the site hierarchy when searching for results
  • Made Search Redirects MultiTenant Site Aware

Total Resolved Issues: 5