Which jsf-impl should i use?

Where can I find jsf-impl for my jsf 2 webapp?

In maven repo I got version 1.2.

In http://download.java.net/maven/2/javax/faces/ I see only jsf-api, but not jsf-impl

Im currently using tomcat 7 and experimenting with primary.

Thanks!


UPDATE

I managed to use both api and impl, but I'm still not sure which one I should use:

<dependency> <groupId>com.sun.faces</groupId> <artifactId>jsf-api</artifactId> <version>2.0.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.sun.faces</groupId> <artifactId>jsf-impl</artifactId> <version>2.0.3</version> <scope>compile</scope> </dependency> 

UPDATE

Sorry for the ambiguity, but this is not only the version that I should use.

I doubted because:

  • I notice the existence of 2 groups of identifiers javax.faces and com.sun.faces
  • I do not see jsf-impl from the maven repository
  • Which repository should I use to get the latest version

Thanks:-)!

+4
source share
1 answer

My suggestion is to use jsf-api and jsf-impl version 2.0.4. Because it has many corrections and improvements compared to 2.0.3.

You can download them from on this page at this link . And look also at MigrationGuide .

+1
source

Source: https://habr.com/ru/post/1344071/


All Articles