>> Can I have Struts 1.1 and Struts 2.0 at the same time for my web
>> development? I'm also using Eclipse 3.2, Java 1.5.
[quoted text clipped - 8 lines]
> that they've dropped a lot of the redundancy between their stuff and
> the JSTL.
Having used both, I can't see any reason why you couldn't use them in
the same project provided you gave them different URL suffixes to work
with (eg. struts1 with .do and struts2 with .action, or similar). The
two frameworks are essentially independant: struts 2 contains almost
nothing of the original struts, instead building on the WebWork
framework. Even the config files have different names under struts2,
not to mention different auto-discovery mechanisms.
I've never actually tried it, though, so your mileage probably will
vary. The best advice I can offer is to "try it and see".
-o
Arne Vajhøj - 11 Dec 2007 03:10 GMT
> Having used both, I can't see any reason why you couldn't use them in
> the same project provided you gave them different URL suffixes to work
[quoted text clipped - 3 lines]
> framework. Even the config files have different names under struts2,
> not to mention different auto-discovery mechanisms.
One thing is whether it technical will work. Maybe it will.
Another thing is whether the resulting code will be easily
maintainable. I have some doubts about that.
Arne