Posts

Showing posts from May, 2019

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

Intelij and Java related solutions of errors and settings.: Updating project newRelease version in pom.xml

Intelij and Java related solutions of errors and settings.: Updating project newRelease version in pom.xml : To update new release version from snapshot version  in pom.xml we need to first go to the directory where pom.xml file present in the comm...

Intelij and Java related solutions of errors and settings.: If Java project is not importing in intelij

Intelij and Java related solutions of errors and settings.: If Java project is not importing in intelij : If you are trying to make a maven project from existing source and when you choose import project and its not importing may be their is a r...

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

Image
Updating version numbers of modules in a multi-module Maven project Suppose you  have a multi-module maven project. and you intend to version all modules together.  So usually you update manually version in each of the module pom.xml as below and the main parent module has the below configuration To update  version  in pom.xml we need to first go to the directory where pom.xml file present in the command prompt  and then use   Use version:set  from the  versions-maven plugin : Run this command t.ex mvn versions:set -DnewVersion=8.3 It will adjust all pom versions, parent versions and dependency versions in a multi-module project. If you made a mistake, do mvn versions:revert afterwards, or mvn versions:commit if you're happy with the results. Thanks, BestRegards Reshu Mahoiya

If Java project is not importing in intelij

If you are trying to make a maven project from existing source and when you choose import project and its not importing may be their is a reason that your jdk version in Settings->Builds->build tools->maven->importing is not the version compatible with the version you are using for maven in intelij.