Creating war file with jar command is not working properly

23,895

Solution 1

"jar" command will not create .class files, it is for creating the package. So you have to compile the source files first, then use the jar command.

Also, you might need to add as parameter(s) the files you want to include, so something like

jar cvf myapp.war *

To add all files.

Solution 2

How To Create i.war in Java

1.Install Jdk

2.Set JAVA_HOME in Inviroment

3.cmd = >

4.c:\user> Cd D:\apex_listener

5.D:\apex_listener> jar -cvf0 D:\apex_listener\i.war -C Y:\APPLICATION_EXPERESS\apex_4.2.2_en\apex\images .

Share:
23,895
Kamalam
Author by

Kamalam

Born and brought up in Coimbatore tamilnadu,india working in iamtop linyi,china

Updated on July 09, 2022

Comments

  • Kamalam
    Kamalam almost 2 years

    Hi all i have used the following command to generate war file from my spring project.

    D:\projectsample\webContent>jar cvf projectsample.war
    

    The war file is generating but when i deploying it using the jettyrunner.jar,its not deploying.I have noticed in the war file that there is no class files are generating inside the WEB-INF\class folder.Can anyone suggest me a solution for this problem.