I am using own java class and I have import in jsp page:
<%@page import="org.common.Common"%>
In my class Common
i have method public static String sayHello(String name);
Then I have loop using JSTL
<c:forEach items="${requestScope.requestDataList}" var="requestLoop">
And I want call my method sayHello
how?
I am getting syntax error when I call:
Common.sayHello(${requestLoop.Name})
Can you help me? Thank you