No rules found matching 'taglib/tag/attribute/rtexprvalue'

来源:互联网 发布:电信itv还有网络卡顿 编辑:程序博客网 时间:2024/06/05 00:13

     今天用tomcat启动一个新项目时,总是循环抛出下面信息.

12:29:10,703 DEBUG sax:1234 - startElement(,,rtexprvalue)
12:29:10,703 DEBUG Digester:1241 -   Pushing body text ''
12:29:10,703 DEBUG Digester:1260 -   New match='taglib/tag/attribute/rtexprvalue'
12:29:10,718 DEBUG Digester:1284 -   No rules found matching 'taglib/tag/attribute/rtexprvalue'.
12:29:10,781 DEBUG sax:936 - characters(true)
12:29:10,781 DEBUG sax:1004 - endElement(,,rtexprvalue)
12:29:10,781 DEBUG Digester:1007 -   match='taglib/tag/attribute/rtexprvalue'
12:29:10,796 DEBUG Digester:1008 -   bodyText='true'
12:29:10,796 DEBUG Digester:1039 -   No rules found matching 'taglib/tag/attribute/rtexprvalue'.
12:29:10,796 DEBUG Digester:1046 -   Popping body text ''
12:29:10,796 DEBUG sax:1123 - ignorableWhitespace(

            )
12:29:10,796 DEBUG sax:1234 - startElement(,,description)
12:29:10,796 DEBUG Digester:1241 -   Pushing body text ''
12:29:10,796 DEBUG Digester:1260 -   New match='taglib/tag/attribute/description'
12:29:10,796 DEBUG Digester:1284 -   No rules found matching 'taglib/tag/attribute/description'.
12:29:10,796 DEBUG sax:936 - characters(Set the tooltip configuration)
12:29:10,796 DEBUG sax:1004 - endElement(,,description)
12:29:10,796 DEBUG Digester:1007 -   match='taglib/tag/attribute/description'
12:29:10,812 DEBUG Digester:1008 -   bodyText='Set the tooltip configuration'
12:29:10,812 DEBUG Digester:1039 -   No rules found matching 'taglib/tag/attribute/description'.
12:29:10,812 DEBUG Digester:1046 -   Popping body text ''
12:29:10,812 DEBUG sax:1123 - ignorableWhitespace(

        )
12:29:10,812 DEBUG sax:1004 - endElement(,,attribute)
12:29:10,812 DEBUG Digester:1007 -   match='taglib/tag/attribute'
12:29:10,812 DEBUG Digester:1008 -   bodyText=''
12:29:10,812 DEBUG Digester:1039 -   No rules found matching 'taglib/tag/attribute'.
12:29:10,812 DEBUG Digester:1046 -   Popping body text ''
12:29:10,828 DEBUG sax:1123 - ignorableWhitespace(
        )
12:29:10,828 DEBUG sax:1234 - startElement(,,attribute)
12:29:10,828 DEBUG Digester:1241 -   Pushing body text ''
12:29:10,828 DEBUG Digester:1260 -   New match='taglib/tag/attribute'
12:29:10,828 DEBUG Digester:1284 -   No rules found matching 'taglib/tag/attribute'.
12:29:10,828 DEBUG sax:1123 - ignorableWhitespace(
            )
12:29:10,828 DEBUG sax:1234 - startElement(,,name)
12:29:10,828 DEBUG Digester:1241 -   Pushing body text ''
12:29:10,828 DEBUG Digester:1260 -   New match='taglib/tag/attribute/name'
12:29:10,828 DEBUG Digester:1284 -   No rules found matching 'taglib/tag/attribute/name'.
12:29:10,828 DEBUG sax:936 - characters(id)
12:29:10,828 DEBUG sax:1004 - endElement(,,name)
12:29:10,843 DEBUG Digester:1007 -   match='taglib/tag/attribute/name'
12:29:10,843 DEBUG Digester:1008 -   bodyText='id'
12:29:10,843 DEBUG Digester:1039 -   No rules found matching 'taglib/tag/attribute/name'.
12:29:10,843 DEBUG Digester:1046 -   Popping body text ''
12:29:10,843 DEBUG sax:1123 - ignorableWhitespace(
            )

慢慢的异常信息就不出来了,就卡住了,我重启tomcat好几次了,都是这种情况.通过网上的资料,找到了解决方法,是log4j.properties里的配置引起了,我最初的配置是log4j.rootLogger=DEBUG,我把它改成log4j.rootLogger=INFO就可以了