美文网首页
信息TLD skipped URI http://java.su

信息TLD skipped URI http://java.su

作者: dazzlingly | 来源:发表于2017-12-11 17:25 被阅读0次

问题

整合Spring MVC由于用到jstl,所以引入jstl标签用的jar包,启动tomcat时控制台出现了如下的输出:

十月 12, 2017 9:48:18 上午 org.apache.catalina.core.StandardService startInternal
信息: Starting service Tomcat
十月 12, 2017 9:48:18 上午 org.apache.catalina.core.StandardEngine startInternal
信息: Starting Servlet Engine: Apache Tomcat/7.0.47
十月 12, 2017 9:48:22 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/core_rt is already defined
十月 12, 2017 9:48:22 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/core is already defined
十月 12, 2017 9:48:22 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/core is already defined
十月 12, 2017 9:48:22 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/fmt_rt is already defined
十月 12, 2017 9:48:22 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/fmt is already defined
十月 12, 2017 9:48:22 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/fmt is already defined
十月 12, 2017 9:48:22 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/functions is already defined
十月 12, 2017 9:48:22 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://jakarta.apache.org/taglibs/standard/permittedTaglibs is already defined
十月 12, 2017 9:48:22 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://jakarta.apache.org/taglibs/standard/scriptfree is already defined
十月 12, 2017 9:48:22 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/sql_rt is already defined
十月 12, 2017 9:48:22 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/sql is already defined
十月 12, 2017 9:48:22 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/sql is already defined
十月 12, 2017 9:48:22 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/xml_rt is already defined
十月 12, 2017 9:48:22 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/xml is already defined
十月 12, 2017 9:48:22 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/xml is already defined
十月 12, 2017 9:48:22 上午 org.apache.catalina.core.ApplicationContext log
信息: No Spring WebApplicationInitializer types detected on classpath
十月 12, 2017 9:48:23 上午 org.apache.catalina.core.ApplicationContext log
信息: Initializing Spring root WebApplicationContext

解决方法

由于standard.jar与jstl.jar需一起使用,但是jstl 1.2版本的就不需要这个standard.jar包了,而本人使用的正是jstl 1.2.jar这个jar包,去掉standard.jar文件后重启tomcat就不会再出现上述信息。

        <dependency>
            <groupId>taglibs</groupId>
            <artifactId>standard</artifactId>
            <version>1.1.2</version>
        </dependency>

本文由 张闹闹 创作,仅供学习交流,如有错误欢迎指出。 可自由转载、引用,但需署名作者且注明文章出处。

相关文章

  • 信息TLD skipped URI http://java.su

    问题 整合Spring MVC由于用到jstl,所以引入jstl标签用的jar包,启动tomcat时控制台出现了如...

  • 使用代理install npm package

    npm config set proxy http://[user:pwd]@domain.tld:port[us...

  • http消息体

    HTTP请求数据: HTTP请求信息由3部分组成: ① 请求方法 URI 协议/版本② 请求头(Request H...

  • http入门

    一,HTTP请求 1.HTTP请求组成部分 HTTP请求信息由3部分组成:(1)请求方法URI协议/版本(2)请求...

  • 论HTTP请求大小

    HTTP请求大小 HTTP分为URI,HEADER,Body三个部分。每个部分都可以包含请求信息,那么每个部分是否...

  • 初识HTTP URI URL URL URI:Uniform Resource Identifie...

  • Idea使用jstl出现500错误!!

    在Idea中使用jstl标签时候经常出现500错误, 错误信息:The absolute uri: [http:/...

  • python 顶级域库ip库

    安装 pip install tld 获取 from tld import get_tldget_tld("htt...

  • HTTP入门(请求与响应)

    HTTP请求与响应的知识点总结 HTTP协议请求 HTTP请求信息由3部分组成:请求方法URI协议/版本、请求头、...

  • (二)HTTP URI

    Author: Xu FC URL URL 组件Scheme: scheme:协议缩写的小写,比如 http/ft...

网友评论

      本文标题:信息TLD skipped URI http://java.su

      本文链接:https://www.haomeiwen.com/subject/dtfwixtx.html