禁用Apache tiles 3中的多语言选项

时间:2016-09-28 07:14:32

标签: spring-mvc tomcat apache-tiles tiles-3

我收到Apche tiles 3和Spring MVC 4的警告我没有为多语言支持添加任何额外的配置,但它默认支持。任何人都可以帮我禁用此选项以在我的网站中删除此警告。

    org.apache.tiles.request.locale.PostfixedApplicationResource.
<init> No supported matching language for locale "sw". 
Using file:/opt/apache-tomcat-8.0.35/webapps/ROOT/WEB-INF/tiles/app-core_sw.xml as a non-localized resource path. see TILES-571

2 个答案:

答案 0 :(得分:6)

您可以通过编写自己的DefinitionFactory实施并在TilesConfigurer中注册相同内容来停用此选项。

public class CustomLocaleDefinitionsFactory extends LocaleDefinitionsFactory {

    /** {@inheritDoc} */
    @Override
    public Definition getDefinition(String name, Request tilesContext) {
    Definition retValue;
    Locale locale = null;

    retValue = definitionDao.getDefinition(name, locale);
    if (retValue != null) {
      retValue = new Definition(retValue);
      String parentDefinitionName = retValue.getExtends();
      while (parentDefinitionName != null) {
        Definition parent = definitionDao.getDefinition(parentDefinitionName, locale);
        if (parent == null) {
          throw new NoSuchDefinitionException("Cannot find definition '" + parentDefinitionName
              + "' ancestor of '" + retValue.getName() + "'");
        }
        retValue.inherit(parent);
        parentDefinitionName = parent.getExtends();
      }
    }

    return retValue;
    }
}

然后在TilesConfigurer注册上面的定义因子类,以防使用像这样的弹簧。

TilesConfigurer configurer = new TilesConfigurer();
configurer.setDefinitions(new String[] { "/WEB-INF/layouts/tiles.xml",
    "/WEB-INF/views/**/tiles.xml" });
configurer.setCheckRefresh(true);
configurer.setDefinitionsFactoryClass(CustomLocaleDefinitionsFactory.class);
return configurer;

答案 1 :(得分:1)

有一个解决方法,只需禁用日志输出就可以了,如果您使用的是Spring Boot,则非常简单:

logging.level.org.apache.tiles.request.locale.PostfixedApplicationResource=ERROR