views:

28

answers:

1

I have read here that one disadvantage that some may find with using Spring MVC over Struts is that Struts has tags that output HTML code, while Spring has tags that don't generate HTML.

My question is can't you just use the Struts tag-lib in a Spring MVC project (or any other kind of framework project), by dropping the right jar into the WEB-INF/lib folder?

Any clarification is appreciated, thanks.

A: 

Spring does integrate with Struts. It's not as easy as just dropping the JAR and its dependencies; you have to configure Spring to know about Struts.

duffymo