Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在一页中查看所有作业,如何在 Spring 批处理管理 Web 应用程序中列出 20 多个作业(默认大小)?还有一种方法可以在列出时按名称对工作进行排序吗?
将 Spring-batch-admin-manager jar 中的“jobs.ftl”文件复制到工作区中的文件夹 WebContent\WEB-INF\web\manager\jobs\html 中。通过将“?sort_by(“name”)”添加到列表中来修改文件中的以下行。它将仅对当前页面中的作业进行排序。我正在寻找一种显示 20 多个工作的方法,以便可以对所有工作进行排序。
<#list jobs?sort_by("name") as job>