Integrating JSF into Vaadin views?

How can we integrating JSF page into Vaadin view?

Let’s say I have a toolbar in JSF as toolbar.xhtml and vaadin view as MainView.java.

How can I display toolbar.xhtml on the top part of MainView.java?

Hi,

there is a JSF Vaadin integration example here https://labs.vaadin.com/vaadin-jsf/. It uses the web component export feature from Vaadin to be able to add Vaadin components (or views) inside a JSF page.

Code is here https://github.com/Artur-/vaadin-jsf-embedding

You should check it out to see if it helps with your case

Artur Signell:
Hi,

there is a JSF Vaadin integration example here https://labs.vaadin.com/vaadin-jsf/. It uses the web component export feature from Vaadin to be able to add Vaadin components (or views) inside a JSF page.

Code is here https://github.com/Artur-/vaadin-jsf-embedding

You should check it out to see if it helps with your case

Thanks for your reply. I am looking for a way to put jsf in vaadin-view not the other way.