Can you paste your code-snippet that you have tried so far?
If you are doing this with XHTML, you could do it like this JSTL code inside JSP:
<c:set var="disableButton" value=""/>
<c:if test=${someValue == true}>
<c:set var="disableButton" value="disabled='disabled'"/>
</c:if>
<input type="submit" value="submit" ${disabledButton} />
I hope that's what you are looking for?