
Originally Posted by
Maxence
I think you're misunderstanding the exception. The MissingResourceException means that you have probably declared a message properties file somewhere in your Spring configuration file with the name "views". Probably something like this:-
Code:
<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="basenames">
<list>
<value>views</value>
</list>
</property>
</bean>
Spring is expecting to find a text resources file called views.properties (or, since your locale is FR, views_fr.properties) that holds your internationalisation keys and text.