How to call a java method with parameters which is defined in Java class,from JSP using JSTL. The method is returning arrays. Any return value can be used.
|
|
|
You can only invoke methods with arguments in EL if you're targeting and running a Servlet 3.0 compatible container (e.g. Tomcat 7, Glassfish 3, JBoss AS 6, etc) with a Assuming that you've a
or even with another variable as argument
But if you don't target a Servlet 3.0 container, then you cannot invoke methods with arguments in EL at all. Your best bet is to just do the job in the preprocessing servlet as suggested by Duffymo.
As a completely different alternative, you could create an EL function which delegates the method call. You can find a kickoff example somewhere near the bottom of this answer. You'd like to end up something like as:
with
|
|||||||||
|
|
Give the JSP a reference to an instance of the class that has the method and call it. You're probably asking who gives the JSP that instance - it's a servlet in the model-2 MVC arrangement. Here's how the flow will work:
|
||||
|
|
|
If you're using JSF, you can use an bean act as a model in View Scope, and load from data source automatic. And if you're using JSP, how about using TLD Tag? And using JSTL tag
|
||||
|
|
The above solution didnt work for me.
I had a function
and it worked. |
|||||
|