我在我的应用程序中使用Vaadin在日期到日期显示PAGED TABLE上的REPORTS。
代码工作正常,当我点击提交按钮时数据没有显示在vaadin ui表的任何位置但是,当我点击该表的标题行然后数据显示。我需要当用户从日期到目前为止,然后单击提交按钮后,我需要在表格上显示报告,而不是单击标题行。这里我是顶部显示表格上的报告我使用的是PAGED TABLE而不是普通表格。
我将此代码用于所有报告,因为所有报告都表现得很好。
请帮助我,这里的代码是
Button executeReportButton = new Button("Submit");
executeReportButton.addListener(new Button.ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
if ((Date) tatFromDate.getValue() != null
&& (Date) tatToDate.getValue() != null) {
runDBReport(reportTable, (Date) tatFromDate.getValue(),
(Date) tatToDate.getValue());
} else
showWarningNotification("Error loading check list report.",
"Date entered is not valid.");
}
});
private void runDBReport(PagedTable reportTable, Date fromDate, Date toDate) {
final PagedTable _reportTable = reportTable;
final Date _fromDate = fromDate;
final Date _toDate = toDate;
HibernateUtils.getCurrentSession().doWork(new Work() {
@Override
public void execute(Connection connection) throws SQLException {
String reportCall = "{ call RP_PROC_CHECKLIST_AUDIT(?, ?, ?) }";
CallableStatement stmt = null;
ResultSet rs = null;
try {
stmt = connection.prepareCall(reportCall);
// register the type of the out param - an Oracle specific
// type
stmt.registerOutParameter(3, OracleTypesHelper.INSTANCE
.getOracleCursorTypeSqlType());
// set the in param
stmt.setDate(1, new java.sql.Date(_fromDate.getTime()));
stmt.setDate(2, new java.sql.Date(_toDate.getTime()));
// execute and retrieve the result set
stmt.execute();
rs = (ResultSet) stmt.getObject(3);
// get the results
while (rs.next()) {
Object TATDataRowId = _reportTable.addItem();
_reportTable.getItem(TATDataRowId)
.getItemProperty("checklistid")
.setValue(rs.getString(1));
_reportTable.getItem(TATDataRowId)
.getItemProperty("checklistdescription")
.setValue(rs.getString(2));
// ... a trillion more
}
} catch (Exception e) {
logger.error(
"Error loading check list report. Exception: {}",
e.getMessage());
logger.debug("Error loading check list report.", e);
showWarningNotification(
"Error loading check list report. Please contact admin",
"Error message is : " + e.getMessage());
} finally {
rs.close();
stmt.close();
}
}
});
}
答案 0 :(得分:1)
我认为你的HibernateUtils.getCurrentSession()。doWork(new Work()....正在启动一个后台线程,当报告完成后填写表格。
对于后台线程更新vaadin中的UI,有一个关于如何执行它的特殊规则。 当您不遵循它们时,服务器端更改仅在下一次客户端 - >服务器交互时可见。
https://vaadin.com/book/vaadin7/-/page/advanced.push.html#advanced.push.running
不要忘记查看服务器推送/轮询,因为必须通知webbrowser新内容