尝试在 struts2 应用程序的单个表单中使用多个提交按钮,但无法正常工作。这是我正在使用的jsp代码
<tr>
<td class="button"><input type="submit" value="Import"
name="destinationImport" class="button"></td>
<td class="button"><input type="submit" value="Export"
name="destinationExport" class="button"></td>
</tr>
这是java部分
private boolean destinationImport;
private boolean destinationExport;
//and the respective setters and getters
但我确信 Struts2 类型转换器在将字符串值转换为布尔值时遇到问题,有人知道如何实现这一点吗
提前致谢