不分页有2种方式: 

1. jrxml 配置 isIgnorePagination="true"

<jasperReport  isIgnorePagination="true">
</jasperReport>



2. 编码指定参数

Map<String,Object> map = new HashMap<>();
map.put("IS_IGNORE_PAGINATION", true);