In general, to call a non static java method you should have an instance
from its class.
for example
${screens.render("component://common/widget/CommonScreens.xml#cctypes")}
in our context we have an object called "screens" wich is an instance
of ScreenRenderer class.
with that object we can call non static method render:
public String render(String combinedName)
hope this help.
youssef.
Le 14/05/2014 11:22, Ramkrishna Swamy a écrit :
Hi User,
Is there any way to call non static java method in ftl?