Posts

Showing posts from April, 2020

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 com

Hello World java program using Intellij

Image
Hello World  java program using Intellij      In this blog, you will learn how to create, run and build a simple Java application that prints  Hello World! to the system output. By this way you will be familiar with IntelliJ IDEA features     1.   Download IntelliJ         To download IntelliJ, we need to go on link   https://www.jetbrains.com/idea/promo/ultimate/ and click on download button and save it to your local laptop and then run the .exe file by this way you will going to download IntelliJ. Launch IntelliJ IDEA.     2.   Prepare New Project If the Welcome screen opens, click  Create New Project . Otherwise, from the main menu, select  File | New | Project . In the new Project Wizard select JAVA from the left list. To develop Java applications in IntelliJ IDEA, you need the Java SDK ( JDK ). If the necessary JDK is already defined in IntelliJ IDEA, select it from the  Project SDK  list. If the JDK is ins

Enabling Remote Debug

Image
Enabling Remote Debug on Windows and Linux machine using Jboss on localhost or any server. Set up the debugger Here i will explain some steps to enable Remote Debug in jboss 6 and 7 versions. First i will explain how we enable Remote debug in windows for jboss 6 and 7 using Intellij. We need to uncomment the line edit run.conf.bat as shown above. If we need to do this operation in linux then the only thing we need to do is edit same thing in run.conf file in bin folder in jboss home catalog. and then restart the jboss server it can be jboss 6  go to intellij click on Run->Edit Configuration. In the  Run/Debug Configurations  dialog, click the  Add New Configuration  button   and select  Remote                         Configure/use the following properties: Name : configure how this run configuration will be called. The name can be anything, including the default value. Host : the address of the machine where the host app will run. Sin