How to extend/customize a WAR with another project

后端 未结 5 1560
挽巷
挽巷 2021-02-06 01:03

We have the following scenario with our project:

  • A core web application packaged as a war file (call it Core project).
  • The need to \"customize\" or \"ext
5条回答
  •  伪装坚强ぢ
    2021-02-06 01:38

    This is little bit more involved but at a high-level we do it as below. We have the core platform ui divided to multiple war modules based on the features (login-ui,catalog-mgmt-ui etc). Each of these core modules are customizable by the customer facing team.

    We merge all of these modules during build time into 1 single war module. The merge rules are based on maven's assembly plugin.

提交回复
热议问题