Struts 2 - struts tag with boolean property
Struts 2 - struts tag <s:if test= "booleanVaue" > with boolean property Always remember two points -- 1) Check your bean (.java) file for getter, setter for boolean type value private boolean isTest; private boolean hasCheck; public boolean isTest() { return isTest; } public void setTest(boolean isTest) { this.isTest= isTest; } public boolean isHasCheck() { return hasCheck; } public void setHasCheck(boolean hasCheck) { this.hasCheck= hasCheck; } ------------------------------------------------------------------------- On a jsp page if you are using these two variables in a <s:if> conditions <s:if test=" isTest "> // This will not work, will always ret...