cannot load JSTL taglib within embedded Jetty server

后端 未结 10 814
太阳男子
太阳男子 2020-12-10 11:55

I am writing a web application that runs within an embedded Jetty instance.

When I attempt to execute a JSTL statement, I receive the following exception:

10条回答
  •  无人及你
    2020-12-10 12:37

    @Drew Thanks Drew. It works.I had been googling for this and end up here.What my mistake was : I was using

                     
                        javax.servlet
                        jstl
                         1.1.2
                         provided
                    
    

    I changed it from above to

               
                javax.servlet
                jstl
                 1.2
                 provided
            
    

    and it got working. Also I was using jstls dependency which I removed.

提交回复
热议问题