Skip to content

ListingBackend

ListingBackend<Filters, Row> is the server-side contract for a grid. Implement it to supply paginated, searchable, and filterable rows to a Listing component. The only method you must provide is search; everything else has sensible defaults.

public interface ListingBackend<Filters, Row> extends ActionHandler, ActionSupplier {
ListingData<Row> search(
String searchText,
Filters filters,
Pageable pageable,
HttpRequest httpRequest);
default boolean selectionEnabled() { return false; }
default Class<Filters> filtersClass() { /* auto-inferred via generics */ }
default GridLayout gridLayout() { return GridLayout.auto; }
}
ParameterDescription
FiltersA class or record whose fields become the filter form rendered above the grid
RowA class or record whose fields become the grid columns
MethodDescription
search(searchText, filters, pageable, httpRequest)Required. Return a page of rows matching the search criteria
selectionEnabled()Return true to enable row checkbox selection
filtersClass()Returns the Filters class; auto-inferred via generics, rarely overridden
gridLayout()Force a specific grid layout. Defaults to GridLayout.auto (auto-selection based on column weights). Override to pin a layout: GridLayout.table, .list, .cards, .masterDetail, or .tree (hierarchical rows with a self-referential children list)
@UI("/arrivals")
public class Arrivals extends Listing<ArrivalFilters, ArrivalRow> {
@Override
public GridLayout gridLayout() {
return GridLayout.table; // always render as a classic table
}
@Override
public ListingData<ArrivalRow> search(
String searchText, ArrivalFilters filters,
Pageable pageable, HttpRequest httpRequest) {
// ...
}
}

See Listing layout for the full auto-selection algorithm and all available GridLayout values.

When extending the Listing<Filters, Row> abstract class, you can enable export buttons by overriding any of three boolean methods. The framework reuses search() to gather the data and produces the file on the server — no extra query code needed.

MethodDefaultEffect when true
pdfExportable()falseShows an “Export PDF” button in the listing toolbar
excelExportable()falseShows an “Export Excel” button in the listing toolbar
csvExportable()falseShows an “Export CSV” button in the listing toolbar

Override one or more to enable the corresponding button:

public class OrdersListing extends Listing<OrderFilters, OrderRow> {
@Override public boolean pdfExportable() { return true; }
@Override public boolean excelExportable() { return true; }
@Override public boolean csvExportable() { return true; }
@Override
public ListingData<OrderRow> search(String searchText, OrderFilters filters,
Pageable pageable, HttpRequest httpRequest) {
return ListingData.of(repository.findAll(searchText, filters, pageable));
}
}

CSV is built into the core module — no extra dependency needed.

Excel and PDF are in separate optional modules. A button is shown only when its module is on the classpath; if the dependency is absent the button is hidden automatically.

Add the modules you need to pom.xml:

<!-- Excel export via Apache POI -->
<dependency>
<groupId>io.mateu</groupId>
<artifactId>export-excel</artifactId>
<version>${mateu.version}</version>
</dependency>
<!-- PDF export via Apache PDFBox -->
<dependency>
<groupId>io.mateu</groupId>
<artifactId>export-pdf</artifactId>
<version>${mateu.version}</version>
</dependency>

Both libraries are Apache 2.0 licensed. If you need a different library (e.g. iText for PDF) you can implement the PdfExporter or ExcelExporter interface yourself and register it as a CDI bean — the framework will pick it up instead.

public record Pageable(int page, int size, List<Sort> sort) {}

Mateu populates this from the grid state automatically. sort contains zero or more Sort entries, each with a fieldId and a Direction (ASC or DESC).

public record ListingData<Row>(Page<Row> page, String emptyStateMessage) {}

emptyStateMessage is optional; when set it is shown in the grid when there are no rows.

Factory methods:

MethodDescription
ListingData.of(rows...)Wrap a varargs array of rows into a single-page result
ListingData.of(List<Row>)Wrap a list of rows into a single-page result
ListingData.from(List<Row>)Alias for of(List<Row>)
ListingData.builder()...build()Builder pattern — use when you need to set all Page fields manually
public record Page<T>(
String searchSignature,
int pageSize,
int pageNumber,
long totalElements,
List<T> content) {}

searchSignature is an opaque token (typically the search text) used by the grid to detect when the result set has changed. totalElements drives the pagination footer.

From the Changes demo — a listing of content changes with a toolbar action that reads JWT claims from the Authorization header:

@Title("Changes")
@Service
@Scope("prototype")
@Trigger(type = TriggerType.OnLoad, actionId = "search")
@Style("max-width:900px;margin: auto;")
public class Changes extends Listing<NoFilters, ChangeRow> {
final ChangeQueryService queryService;
final CreateReleaseForm createReleaseForm;
@Override
public ListingData<ChangeRow> search(
String searchText, NoFilters filters, Pageable pageable, HttpRequest httpRequest) {
var found = queryService.findAll(searchText, filters, pageable);
return ListingData.<ChangeRow>builder()
.page(Page.<ChangeRow>builder()
.searchSignature(found.page().searchSignature())
.totalElements(found.page().totalElements())
.pageSize(found.page().pageSize())
.pageNumber(found.page().pageNumber())
.content(found.page().content().stream()
.map(dto -> new ChangeRow(
dto.pageId(), dto.page(), dto.country(), dto.language(),
new Status(mapStatus(dto.status()), dto.status().name()),
new ColumnAction("compare", "Compare")))
.toList())
.build())
.build();
}
}

When all rows fit in memory and you do not need server-side pagination:

@Override
public ListingData<CustomerRow> search(
String searchText, CustomerFilters filters,
Pageable pageable, HttpRequest httpRequest) {
var rows = repository.findAll().stream()
.filter(c -> searchText == null || c.name().contains(searchText))
.map(c -> new CustomerRow(c.id(), c.name(), c.email()))
.toList();
return ListingData.of(rows);
}

If your Listing subclass also implements UploadEnabled, the framework adds an “Import” button to the listing toolbar. Clicking it opens an upload widget; the file is sent to POST /upload (the same endpoint used by file fields) and, once the upload completes, the framework calls processUpload() with the returned file id.

public interface UploadEnabled {
Object processUpload(String fileId, HttpRequest httpRequest);
}

The return value follows the same conventions as any action: a Message for a summary, a background job for large imports, or a ListingData to refresh the grid immediately.

public class ProductsListing extends Listing<ProductFilters, ProductRow>
implements UploadEnabled {
final ProductImportService importService;
@Override
public Object processUpload(String fileId, HttpRequest httpRequest) {
var result = importService.importCsv(fileId);
return Message.success(result.imported() + " records imported, "
+ result.errors() + " errors.");
}
@Override
public ListingData<ProductRow> search(...) { ... }
}

Example — background import for large files

Section titled “Example — background import for large files”
@Override
@Action(background = true, sse = true)
public Object processUpload(String fileId, HttpRequest httpRequest) {
return importService.startAsyncImport(fileId);
}

The /upload endpoint must be provided by your application — see File Upload for Spring Boot, Micronaut, and Quarkus examples.


ReactiveListingBackend<Filters, Row> is the Project Reactor variant. Use it when your data source is reactive (R2DBC, WebClient, etc.). The contract is identical to ListingBackend except that search returns Mono<ListingData<Row>> and handleAction returns Flux<Object>.

public interface ReactiveListingBackend<Filters, Row> extends ActionHandler {
Mono<ListingData<Row>> search(
String searchText,
Filters filters,
Pageable pageable,
HttpRequest httpRequest);
default boolean selectionEnabled() { return false; }
}
@Override
public Mono<ListingData<ProductRow>> search(
String searchText, ProductFilters filters,
Pageable pageable, HttpRequest httpRequest) {
return productRepository.findAll(searchText, pageable)
.collectList()
.map(rows -> ListingData.of(rows));
}