Develop > Controller layer > Application developer > Catalog subsystem
Configure Catalog boundaries to prevent unbound exceptions
The catalog subsystem defines business object values for product search results. The default values are defined in...
xml/config/com.ibm.commerce.catalog/wc-admin-component.xmlLimit controls are disabled by default. You can enable it by changing the values to meet the business needs.
Procedure
- Open the xml/config/component-id/wc-admin-component.xml file. The default values are shown in the following code snippet:
<_config:extendedconfiguration> <_config:configgrouping name="ProductSearchThreshold"> <_config:property name= "defaultPageSize" value = "10" /> <_config:property name= "maxPageSize" value = "0" /> <_config:property name= "maxResultSize" value = "0" /> </_config:configgrouping> </_config:extendedconfiguration>Where:
- ProductSearchThreshold
- defaultPageSize
- The number of catalog products displayed on the storefront when no paging parameters are passed.
- maximumPageSize
- The maximum number of catalog products displayed on a page in the storefront. The default value is 0, denoting unlimited limits. If you do not need to control the limit on catalog search results, you can leave the value as 0.
- maximumResultSize
- The maximum number of catalog products retrieved from the database, pertaining to a search criteria. The default value is 0, denoting unlimited limits. If you do not need to control the limit on catalog search results, you can leave the value as 0.
- Save and close the file.
What to do next
If you are using customized JSP files from WebSphere Commerce Version 6 in the WebSphere Commerce v7 store, modify your JSP files to refer to the pageSize set by the beans.
That is, change references of pageSize to references of catEntSearchListBean.pageSize in the JSP files.
For example, change:
<c:set var="prevPageIndex" value="${catEntSearchListBean.beginIndex - pageSize}"/>to:
<c:set var="prevPageIndex" value="${catEntSearchListBean.beginIndex - catEntSearchListBean.pageSize}"/>
Related concepts
Related tasks
Configure Order boundaries to prevent unbound exceptions