| Author |
struts and jstl both
|
dhriti joshi
Ranch Hand
Joined: Aug 13, 2002
Posts: 82
|
|
hi, i came across an application that uses struts as well as jstl. both the technologies have many overlapping functionalities,then is that any logic to use both of them together. thanks.
|
 |
Junilu Lacar
Bartender
Joined: Feb 26, 2001
Posts: 4133
|
|
There is nothing inherently "wrong" with using Struts and JSTL tags in the same JSP. They are, after all, just custom tags. However, the Struts documentation recommends using JSTL in favor of any Struts-specific tags that overlap JSTL tag functionality. This includes most of the logic and bean tags. For example, you should favor c:forEach over logic:iterate and c ut or EL in favor of bean:write. On the other hand, the html tags have no JSTL equivalent.
|
Junilu - [How to Ask Questions] [How to Answer Questions] [MiH]
|
 |
 |
|
|
subject: struts and jstl both
|
|
|