I am trying to add Internationalization and Localization support to our Spring MVC application. I made encoding like this in *-servlet.xml
<bean id="messageSource"
class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basename" value="classpath:messages" />
<property name="defaultEncoding" value="UTF-8"/>
But I found wrong character like below

I cannot figure out what problem I should fix it. If possible, please let me know.
I've already added in jsp page like this: <%@ page contentType="text/html;charset=UTF-8" language="java" %>
But it doesn't work.