org.springframework.context.support.ResourceBundleMessageSource.setParentMessageSource()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(5.2k)|赞(0)|评价(0)|浏览(86)

本文整理了Java中org.springframework.context.support.ResourceBundleMessageSource.setParentMessageSource方法的一些代码示例,展示了ResourceBundleMessageSource.setParentMessageSource的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ResourceBundleMessageSource.setParentMessageSource方法的具体详情如下:
包路径:org.springframework.context.support.ResourceBundleMessageSource
类名称:ResourceBundleMessageSource
方法名:setParentMessageSource

ResourceBundleMessageSource.setParentMessageSource介绍

暂无

代码示例

代码示例来源:origin: spring-projects/spring-framework

/**
 * Checks JSTL's "javax.servlet.jsp.jstl.fmt.localizationContext"
 * context-param and creates a corresponding child message source,
 * with the provided Spring-defined MessageSource as parent.
 * @param servletContext the ServletContext we're running in
 * (to check JSTL-related context-params in {@code web.xml})
 * @param messageSource the MessageSource to expose, typically
 * the ApplicationContext of the current DispatcherServlet
 * @return the MessageSource to expose to JSTL; first checking the
 * JSTL-defined bundle, then the Spring-defined MessageSource
 * @see org.springframework.context.ApplicationContext
 */
public static MessageSource getJstlAwareMessageSource(
    @Nullable ServletContext servletContext, MessageSource messageSource) {
  if (servletContext != null) {
    String jstlInitParam = servletContext.getInitParameter(Config.FMT_LOCALIZATION_CONTEXT);
    if (jstlInitParam != null) {
      // Create a ResourceBundleMessageSource for the specified resource bundle
      // basename in the JSTL context-param in web.xml, wiring it with the given
      // Spring-defined MessageSource as parent.
      ResourceBundleMessageSource jstlBundleWrapper = new ResourceBundleMessageSource();
      jstlBundleWrapper.setBasename(jstlInitParam);
      jstlBundleWrapper.setParentMessageSource(messageSource);
      return jstlBundleWrapper;
    }
  }
  return messageSource;
}

代码示例来源:origin: org.springframework/spring-webmvc

/**
 * Checks JSTL's "javax.servlet.jsp.jstl.fmt.localizationContext"
 * context-param and creates a corresponding child message source,
 * with the provided Spring-defined MessageSource as parent.
 * @param servletContext the ServletContext we're running in
 * (to check JSTL-related context-params in {@code web.xml})
 * @param messageSource the MessageSource to expose, typically
 * the ApplicationContext of the current DispatcherServlet
 * @return the MessageSource to expose to JSTL; first checking the
 * JSTL-defined bundle, then the Spring-defined MessageSource
 * @see org.springframework.context.ApplicationContext
 */
public static MessageSource getJstlAwareMessageSource(
    @Nullable ServletContext servletContext, MessageSource messageSource) {
  if (servletContext != null) {
    String jstlInitParam = servletContext.getInitParameter(Config.FMT_LOCALIZATION_CONTEXT);
    if (jstlInitParam != null) {
      // Create a ResourceBundleMessageSource for the specified resource bundle
      // basename in the JSTL context-param in web.xml, wiring it with the given
      // Spring-defined MessageSource as parent.
      ResourceBundleMessageSource jstlBundleWrapper = new ResourceBundleMessageSource();
      jstlBundleWrapper.setBasename(jstlInitParam);
      jstlBundleWrapper.setParentMessageSource(messageSource);
      return jstlBundleWrapper;
    }
  }
  return messageSource;
}

代码示例来源:origin: apache/servicemix-bundles

/**
 * Checks JSTL's "javax.servlet.jsp.jstl.fmt.localizationContext"
 * context-param and creates a corresponding child message source,
 * with the provided Spring-defined MessageSource as parent.
 * @param servletContext the ServletContext we're running in
 * (to check JSTL-related context-params in {@code web.xml})
 * @param messageSource the MessageSource to expose, typically
 * the ApplicationContext of the current DispatcherServlet
 * @return the MessageSource to expose to JSTL; first checking the
 * JSTL-defined bundle, then the Spring-defined MessageSource
 * @see org.springframework.context.ApplicationContext
 */
public static MessageSource getJstlAwareMessageSource(
    ServletContext servletContext, MessageSource messageSource) {
  if (servletContext != null) {
    String jstlInitParam = servletContext.getInitParameter(Config.FMT_LOCALIZATION_CONTEXT);
    if (jstlInitParam != null) {
      // Create a ResourceBundleMessageSource for the specified resource bundle
      // basename in the JSTL context-param in web.xml, wiring it with the given
      // Spring-defined MessageSource as parent.
      ResourceBundleMessageSource jstlBundleWrapper = new ResourceBundleMessageSource();
      jstlBundleWrapper.setBasename(jstlInitParam);
      jstlBundleWrapper.setParentMessageSource(messageSource);
      return jstlBundleWrapper;
    }
  }
  return messageSource;
}

代码示例来源:origin: com.blossom-project/blossom-autoconfigure

@Bean
@Primary
public MessageSource messageSource( BlossomReloadableResourceBundleMessageSource parentMmessageSource) {
 MessageSourceProperties properties = messageSourceProperties();
 ResourceBundleMessageSource messageSource = new ResourceBundleMessageSource();
 if (StringUtils.hasText(properties.getBasename())) {
  messageSource.setBasenames(StringUtils.commaDelimitedListToStringArray(
   StringUtils.trimAllWhitespace(properties.getBasename())));
 }
 if (properties.getEncoding() != null) {
  messageSource.setDefaultEncoding(properties.getEncoding().name());
 }
 messageSource.setFallbackToSystemLocale(properties.isFallbackToSystemLocale());
 Duration cacheDuration = properties.getCacheDuration();
 messageSource.setCacheSeconds(
  cacheDuration == null ? -1 : (int) cacheDuration.getSeconds());
 messageSource.setAlwaysUseMessageFormat(properties.isAlwaysUseMessageFormat());
 messageSource.setUseCodeAsDefaultMessage(properties.isUseCodeAsDefaultMessage());
 messageSource.setParentMessageSource(parentMmessageSource);
 return messageSource;
}

相关文章

微信公众号

最新文章

更多