Recently I've read some articles and SO answers, where suggests we should avoid the use of jsp:useBean tag to communicate from the View Layer to the Controller layer. I'm developing a View layer with JSTL and I want to know:
How to access a bean/servlet method from the view layer without the jsp:useBean tag?
UPDATE
I was thinking in a Servlet as a bean, put it in1 jsp:useBean and then use its methods and vars, but it seems the tag is becoming old, that's why I want to see alternatives to use beans or servlets or Am I misunderstading the use of the tag?