Library not include to Artifacts
I have situation like in image below. But Tomcat not recognize JSTL library, because is not really included to WEB-INF/lib. Where is problem?
If copy manual JSTL to WEB-INF/lib, that averything works ok.
Library is downloaded from Maven.
请先登录再写评论。
Hello,
Does your 'jstl' project library have jstl binaries attached to it?
Could you assemble and provide here a minimal but complete standalone project which illustrates the problem?
Denis
I found this problem. It is because Maven downloaded not only jstl, but also jsp-api and servlet-api that exist in standard Tomcat installation. Is that crazy situation.
Now I changed wrong Maven package from correct with only jstl.
Thanks for support:)