How to work with referenced projects in eclipse

冷暖自知 提交于 2020-01-11 08:51:49

问题


Ok maybe everybody knows how to do this, but I've never try it beacause I've never needed it so, how do you work with multiple referenced projects in eclipse? I have a couple of Struts 1 web applications that must use another struts 1 "library" project and right now I'm doing the communication between them using url requests, wich is really annoying (at least how I have implemented it).

I would like to be able to use the classes of the "library" project directly in my other struts applications.

So far I know there are supposed to be in the same workspace and that I must reference using the "project references" options in the project properties, but that's it! I really don't know what to do next.

Thanks!


Ok, that did it! Now when I export the struts application in a WAR file what is going to happen to the struts library application? Do I need to export both in separate WAR files or just by exporting the primary applicacion WAR will export also all the files of the library web application?


回答1:


Projects Menu -> properties

Go to the Java Build Path.

There, you can either add the library directly or add another project into the build path of the current project.




回答2:


You probably just need the necessary jar files and either include them with your WAR, or add them to your Application Server (many have different ways of doing this).

Another option is to bundle each WAR in one EAR file. This approach won't work on Tomcat, but will work on WebSphere, WebLogic ...



来源:https://stackoverflow.com/questions/443286/how-to-work-with-referenced-projects-in-eclipse

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!