我已经使用Resource Bundle编辑器在eclipse中创建 _hi(Hindi language) locale properties file。
我的问题是,如果我运行我的网页,它会显示????而不是印地语内容。
我在下面提供了代码。它适用于法语
弹簧servlet.xml中
test cx,1

form.jsp
<bean class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor">
<property name="paramName" value="siteLang"></property>
</bean>
<bean id="messageSource"
class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basename" value="WEB-INF/messages"></property>
</bean>
<bean id="localeResolver"
class="org.springframework.web.servlet.i18n.CookieLocaleResolver">
<property name="defaultLocale" value="ta"></property>
<property name="cookieName" value="BalsCookie"></property>
<property name="cookieMaxAge" value="300"></property>
</bean>
&#13;
请告诉我错误。