You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shiro.apache.org by "Hao Zhong (Jira)" <ji...@apache.org> on 2021/01/20 06:19:01 UTC

[jira] [Created] (SHIRO-810) DefaultFilterChainManager#addToChain can throw a more specific exception

Hao Zhong created SHIRO-810:
-------------------------------

             Summary: DefaultFilterChainManager#addToChain can throw a more specific exception
                 Key: SHIRO-810
                 URL: https://issues.apache.org/jira/browse/SHIRO-810
             Project: Shiro
          Issue Type: Bug
            Reporter: Hao Zhong


DefaultFilterChainManager#addToChain throws IllegalArgumentException when the filter is null:
{code:java}
 public void addToChain(String chainName, String filterName, String chainSpecificFilterConfig) {
        if (!StringUtils.hasText(chainName)) {
            throw new IllegalArgumentException("chainName cannot be null or empty.");
        }
        Filter filter = getFilter(filterName);
        if (filter == null) {
            throw new IllegalArgumentException("There is no filter with name '" + filterName +
                    "' to apply to chain [" + chainName + "] in the pool of available Filters.  Ensure a " +
                    "filter with that name/path has first been registered with the addFilter method(s).");
        }        applyChainConfig(chainName, filter, chainSpecificFilterConfig);        NamedFilterList chain = ensureChain(chainName);
        chain.add(filter);
    }
{code}
It is more specific to throw ConfigurationException. Indeed, the following method throws ConfigurationException for the identical reason:
{code:java}
 public void setGlobalFilters(List<String> globalFilterNames) throws ConfigurationException {
        // validate each filter name
        if (!CollectionUtils.isEmpty(globalFilterNames)) {
            for (String filterName : globalFilterNames) {
                Filter filter = filters.get(filterName);
                if (filter == null) {
                    throw new ConfigurationException("There is no filter with name '" + filterName +
                                                     "' to apply to the global filters in the pool of available Filters.  Ensure a " +
                                                     "filter with that name/path has first been registered with the addFilter method(s).");
                }
                this.globalFilterNames.add(filterName);
            }
        }
    }
{code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)