Is there way I can combine a JSF component and a Wicket component in the same web page?
I have a menu bar component created in Wicket and a form component is created in JSF.
I have to combine these two components in one page, is it possible?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
Yes, it's possible. I'd need to know a bit more about your situation to give much real advice, but this wiki entry indicates one possible tactic. Cobbling things together this way is not likely to be the best approach though. If you can't easily make a wicket component that does the same thing as your jsf component (or vice versa), you've probably got too much logic in your presentation code. Move as much of the work as you can into plain old java classes, and see if you can just use one framework. |
|||||||||||
|
