joy77
joy77

Reputation: 71

How can i use Myfaces 2.3, Primefaces Elite 7.0.4 & Extensions and Omnifaces 3.3 together in a SpringBoot application?

I want to split an existing JavaEE "monolith" into seperate microservice parts and after a little bit researching i want to switch to Spring-Boot instead of using Mojarra 2.3, Primefaces 7.0.4 including Primefaces Extensions, Omnifaces 3.3 on a wildfly application server 16.0.0. The build was currently made with maven and i want to keep that way.

I am new to Spring-Boot, so is there currently a concrete description/example using MyFaces 2.3, Primefaces 7.0.4 (Installed in locale repository only) and Omnifaces 3.3 together ? I know that i need MyFaces in version 2.3 to use the latest omnifaces version which is currently used by the project ...

I have also seen that the most configurations of Spring-Boot are made with JoinJaces - but i don't know how to do that with it because the primefaces library is the buyed and commercial one and not the open version ...

Upvotes: 0

Views: 413

Answers (1)

Melloware
Melloware

Reputation: 12029

JoinFaces is the way to go: http://joinfaces.org/

You can use their starter app to configure Spring boot for PrimeFaces, OmniFaces, MyFaces etc. See: https://joinfaces-example.herokuapp.com/starter.jsf

It will generate you a starter project with everything wired up.

Upvotes: 2

Related Questions