Liferay provides finder methods facility with help of service. Lets say we have employee entity and we want to create the finder method base on city. It allow to create finder method in it. In below example we create finder method which return List of Employee. <entity name="Employee" local-service="true" remote-service="true" cache-enabled="false"> <column name="employeeId" type="long" primary="true" /> <column name="employeeCity" type="String" /> <column name="employeeCell" type="String" /> <finder name="EmployeeCity" return-type="Collection"> <finder-column name="employeeCity" /> </finder> </entity> Run service. Our half work is done (finder method is available in persistence class). EmployeeUtil in my case it is package com.sa.service.persistence inside WEB-INF. There are many...