What’s the Maximum value for dval ID is? Ans: 2^32-1 = 4,294,967,295 Why? Because Forge is a 32-bit program and can’t handle integers outside the 32-bit range. In practice, highest ID value that Forge uses (for auto-generated or external dimension values) is actually 2^32 – 2 (4294967294): and not recommended to exceed this. When assigning IDs to auto-generated or external […]
Looping Map in Java
Below code snippet shows how to loop a Map or HashMap in Java. Map<String, String> map = new HashMap<String, String>(); map.put(“1”, “Mon”); map.put(“2”, “Tue”); map.put(“3”, “Wed”); //loop a Map for (Map.Entry<String, String> entry : map.entrySet()) { System.out.println(“Key : ” + entry.getKey() + ” Value : ” + entry.getValue()); } System.out.println(“####################”); //Java 8 only, forEach and Lambda map.forEach((k,v)->System.out.println(“Key : ” + k + […]
Supported Features For Wildcard Search
Features supported for queries that execute a wildcard search. Feature Support with wildcard search Comments Stemming No Thesaurus matching No Misspelling correction No Auto-correct and “Did You Mean” are not supported. Relevance ranking Yes Boolean search Yes Snippeting No Phrase search No Why did it match Yes Word interp Yes
Check if property exist in Record Manipulator
Many times there is requirement to check if a property exist or not and based on that perform some logic or the other in the pipeline. In this example we are going to create a Record Manipulator which check Existence of property “demoProperty” and if it does not exist create one. Else if “demoProperty” is empty add a default value to it. […]
Index KeyDescriptors for RecordCache do not match those of the join RecordAssembler
This problem occurs, when record cache upstream from record assembler is missing record index. Error may look like below FATAL 03/29/16 23:08:15.535 UTC (1459217295538) FORGE {config}: The index KeyDescriptors for the RecordCache ‘Demo Cache’ do not match those of the join in the RecordAssembler ‘Join_Demo_data’. Therefore, the join is invalid! ERROR 03/29/16 23:08:15.535 UTC (1459217295538) FORGE {config}: DValIdServer was destroyed […]
Convert HashMap To ArrayList
Two of the most used data structures used in java are HashMap and ArrayList. Inherited from different hierarchies, HashMap inherited from Map interface which represents key-value pairs form of data. ArrayList is inherited from List interface which arranges the data in sequential manner. Conversion of HashMap to ArrayList is not straight forward as there is no direct methods in HashMap which converts HashMap to ArrayList. Let’s see how to convert HashMap to ArrayList in java with examples.
Java Properties File
To store come configurable attributes of an application, we sometime use .properties files. Also know as Property Resource Bundles can be used to store strings for Internationalization.It’s like storing parameters as key value pairs. Let’s see an example here. First we will create a java project, let’s name it as “javaProperties” and added few classes to it with one properties […]
Basics Of Cartridge Handlers
When working on projects, with Oracle Experience Manager implementation. We play a lot with cartridge templates and their handlers. Cartridge handlers are used to connect to external resources [MDEX Engine, database, ATG, CQ5, WCS, etc] and much more to create a response object [ContentItem]. ContentItem is then given to a web application and is responsible to render the content. For example: If we have […]
What’s New in Oracle Commerce 11.2
Oracle Commerce Workbench Oracle Commerce 11.2 introduces new feature called project capabilities in Experience Manager. It’s control for business users to isolate their changes and publish them to the live site. Below are what Oracle Commerce 11.2 documentation says: – This allows business users to work on multiple sets of changes with different team members mimicking a real world process without […]
Oracle Endeca 11.2 Unauthorized (401): Unauthorized access to workbench
When install new ToolsAndFramework 11.2 and run initialize_services.bat step. We get below error [12.07.15 00:00:00] SEVERE: Unauthorized (401): Unauthorized access to workbench . Please check your credentials in WorkbenchConfig.xml/OCS. If problem still persists, please contact your administrator. Occurred while executing line 3 of valid BeanShell script: [[ 1| 2| 3| IFCR.provisionSite(); 4| 5| ]] [12.07.15 00:00:00] SEVERE: Caught an exception […]