开发者

Eclipse: including libraries with war file project

开发者 https://www.devze.com 2023-03-27 04:37 出处:网络
I use the jstl library in my project, but as an external jar. Afte开发者_StackOverflow社区r exporting my project to a .war file, these libraries are not included and I\'m getting errors. How do I make

I use the jstl library in my project, but as an external jar. Afte开发者_StackOverflow社区r exporting my project to a .war file, these libraries are not included and I'm getting errors. How do I make sure the library is included in my war file?

Also, an unrelated question, if an ear file would have only one war module, is there a point to making it an .ear instead of .war


If you have put the jstl jars inside WebContent directory they will be packed in your WAR file. But if you are loading them from somewhere else make sure that you have them in your export list (Project Properties -> Java Build Path -> Order and Export).

If you have an EAR file you can make some extra settings in your application.xml file, or even some container specific ones.

0

精彩评论

暂无评论...
验证码 换一张
取 消