What is the best way to share common code (such as domain classes) between two or more projects?

后端 未结 7 1860
野的像风
野的像风 2021-02-02 11:33

We are developing a Web application consisting of two Eclipse projects. One project is an HTTP-based RESTful Web service; the other project is a Web site. Both

7条回答
  •  走了就别回头了
    2021-02-02 12:17

    Usually you create a third project (e.g. core or shared) which contains the shared code. Just depend on it from both your projects.

提交回复
热议问题