This is a discussion on Difference between <jsp:useBean> and <bean:define> ? - Weblogic ; When I define something like the following in my ActionClass (in a Struts/JSP Architecture) request.setAttribute("myVo", myVoObject); I could access this object from my JSP page (as far as I know) by declaring a bean like: resp. But what is the ...
When I define something like the following in my ActionClass (in a Struts/JSP Architecture)
request.setAttribute("myVo", myVoObject);
I could access this object from my JSP page (as far as I know) by declaring a bean like:
resp.
But what is the difference?
Is the next html:text tag valid for both declarations?
Anan