Failed to load or instantiate TagLibraryValidator class: org.apache.taglibs.standard.tlv.JstlCoreTLV

后端 未结 4 1800
走了就别回头了
走了就别回头了 2021-01-05 02:12

So I was working with JSTL in OSGi, under Gemini runtime. And I\'m getting following exception, when I try to access the url to my servlet: -

SE         


        
4条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-05 02:38

    com.springsource.javax.servlet.jsp.jstl_1.2.0.v20110728
    com.springsource.org.apache.taglibs.standard_1.1.2.v20110517
    

    You're mixing JSTL 1.2.0 API+impl with JSTL 1.1.2 impl.

    The both impls are conflicting with each other which explains all the trouble you're seeing.

    Get rid of the 1.1.2 impl.

    See also:

    • Our JSTL wiki page

提交回复
热议问题