Broadleaf Microservices
  • v1.0.0-latest-prod

Catalog Browse Customer Segment Provider

Table of Contents
Note
Since Catalog Browse 1.8.7, Release Train 1.8.6

Overview

A Provider for interfacing with a persistence provider for operations directly involving the CustomerSegment domain. This provider is included through the Customer Client, which handles commonly reused components across different services.

This provider is used by the CustomerSegmentContextInfoCustomizer to hydrate customer segment IDs matching the current user and context onto the ContextInfo for incoming requests. More info is available in the Customer Client.

Configuration

The provider can be configured with the following properties

broadleaf:
  catalogbrowse:
    customer-segment-provider:
      # Base url of the customer service. This should be changed in different flexpackage configurations.
      url: https://localhost:8463/customer
      # Endpoint used to read all customer segments. In practice, this is used with a filter to select only dynamic segments.
      read-customer-segments-path: /segments
      # Endpoint used to defer evaluation of customer segments against the current user and context to the Customer Service.
      # This is typically not used since it is more expensive than evaluating rules in the calling service instead.
      resolve-customer-segments-path: /segment-resolver
      # The id of the Authorized Client for the service using the provider, in this case Catalog Browse's id.
      service-client: catalogbrowseclient

Disabling

This feature can be disabled by setting broadleaf.catalogbrowse.dynamic-customer-segments.active=false, or if Browse and Cart Ops are in the same flexpackage: broadleaf.dynamic-customer-segments.active=false.