how to create ear file, and include war and jar files inside that

后端 未结 6 1405
小蘑菇
小蘑菇 2021-02-05 08:17

I am trying to create an EAR file from the command prompt. I have used

jar -cvf myServletWAR.ear . 

But my question is, how can I get this EAR

6条回答
  •  伪装坚强ぢ
    2021-02-05 09:07

    .jar file into an .ear

    jar -cvf myApplication .ear myService.jar

    .war file you can add that to the .ear file in the same way.

    Reffer http://supportline.microfocus.com/Documentation/books/sx51/thdpoy10.htm

提交回复
热议问题