Thanks for your help !
I took a look at JSF Portlet Bridge, but I don't understand how to apply it, sorry 
First, I add th librairy jsf-portlet :
Code:
<dependency>
<groupId>com.sun.faces.portlet</groupId>
<artifactId>jsf-portlet</artifactId>
<version>1.2.3</version>
<scope>compile</scope>
</dependency>
Then I guess I have to modify portlet.xml ?
I change
Code:
<portlet-class>
org.springframework.web.portlet.DispatcherPortlet
</portlet-class>
to
Code:
<portlet-class>com.sun.faces.portlet.FacesPortlet</portlet-class>
And normally I have to add :
Code:
<init-param>
<description>Portlet init view page</description>
<name>com.sun.faces.portlet.INIT_VIEW</name>
<value>?</value>
</init-param>
But I don't know what value I have to use 
Maybe I'm complety wrong ?