为什么我的网页显示????而不是内容

时间:2017-05-13 14:49:00

标签: java spring eclipse internationalization bundle

我已经使用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;
&#13;
&#13;

请告诉我错误。

0 个答案:

没有答案