Advanced Java Programming

Image
                          Advanced Java Programming Advanced Java Programming :-   Introduction to advance java   As most of us already know that if we want to make normal applications it  can be easily built using core Java concepts. But, when it we need to develop web applications, advanced Java fundamentals, like JSP, Servlets, JDBC etc. needed, so to add capabilities and features of the application advance java is essential for developers. Through the motive of this blog is to explain about Advanced Java, I will be giving you a complete insight into the fundamental concepts of Advance Java. Figure - 1.2 If you want to see complete video on this please  have a look the video below.                              Learn with Resh u Advanced Java Programming Course Figure - 1.3 I hope you understood by the slide why Advanced Java is essential. For your better understanding, I have divided this article int

Introduction of some maven commands


Hi,


Here I will explain about maven commands


  • mvn install:- 
When we want to build any java project and want to create war or jar file or want to package our project code to a jar or war file then we run mvn install command.
  • mvn clean :- 
This command is used for cleaning the target folder from the java project. What i mean in simple language is that if we run for example java install on any java project then it creates a package of the code in target folder, and if we want to remove that folder and install again from scratch then we run mvn clean command.
  • mvn deploy :-
If we want to upload our jar file to the server then we run mvn deploy command. For this we need to properly configure server configurations on java project so that it reaches the server correctly.

  • mvn clean install unit-tests: - 
This command is used for building project with only unit tests. If we have a project which is configured with unit testing as well then, we run this command to build project and build unit test classes as well.


  • mvn clean install integration-tests: -  
This command is used for building project with only Integration tests. project which is configured with Integration testing as well then, we run this command to build project and build Integration test classes as well.



Thanks,
Best Regards
Reshu Mahobiya

Comments

Popular posts from this blog

Advanced Java Programming

Updating version numbers of modules in a multi-module Maven project