posted 19 years ago
About the only <logic:xxx> tags I use are <logic:messagesPresent> and <logic:messagesNotPresent> since these deal with Struts-specific messages, and there is no equivalent in JSTL. For all the others, JSTL is eaiser to use and more powerful
The same is mostly true of the <bean:xxx> tags, whith one notable exception: There is no equivalent to the <bean:size> tag, and that one comes in handy.
Regarding the struts-el tags: Since the web tool I'm using handles regular struts tags better than struts-el tags, I tend to use the regular ones more. However, when I need to use a run-time expression in a Struts tag, I'll use struts-el.
The trend is toward "scriptless JSPs", and while I'm not fanatical about it, I try to keep scriptlets out of my JSPs as much as possible, and one way to do that is to use struts-el.