This might be duplicate question.
I just want to call method which is not getter or setter method eg. makeCall(someObj,"stringvalue") of xyz class.
Java Class
Class XYZ{
public String makeCall(Object objValue, String stringValue){
//some logic here
}
}
JSTL
<jsp:userBean id="xyz" class="com.XYZ"/>
${xyz.makeCall("hello","Friend")}