答案 0 :(得分:4)
更改
<s:button action="#{abastecimentoAction.pesquisaAbasatecimentos}" id="pesquisaAbastecimentos" value="Pesquisar Abastecimento">
</s:button>
到
<h:commandButton action="#{abastecimentoAction.pesquisaAbasatecimentos}" id="pesquisaAbastecimentos" value="Pesquisar Abastecimento">
</h:commandButton>
它不起作用的原因是<s:button>
执行HTTP GET,而不是POST表单。
如果它不起作用,您还应该将int
更改为Integer
。