Spring – Environment Setup

Categories: Spring

Spring – Environment Setup

 

Step 1 –Setup Java Development Kit (JDK) 

You can download the latest version of SDK from Oracle's Java site: Java SE Downloads. You will find instructions for installing JDK in downloaded files, follow the given instructions to install and configure the setup. Finally set PATH and JAVA_HOME environment variables to refer to the directory that contains java and javac, typically java_install_dir/bin and java_install_dir respectively. 

If you are running Windows and have installed the JDK in C:\jdk1.6.0_15, you would have to put the following line in your C:\autoexec.bat file.

 

set PATH=C:\jdk1.6.0_15\bin;%PATH%

set JAVA_HOME=C:\jdk1.6.0_15

Alternatively, on Windows NT/2000/XP, you will have to right-click on My Computer, select Properties -> Advanced -> Environment Variables. Then, you will have to update the PATH value and click the OK button.

On Unix (Solaris, Linux, etc.), if the SDK is installed in /usr/local/jdk1.6.0_15 and you use the C shell, you will have to put the following into your .cshrc file.

setenv PATH /usr/local/jdk1.6.0_15/bin:$PATH

setenv JAVA_HOME /usr/local/jdk1.6.0_15

Alternatively, if you use an Integrated Development Environment (IDE) like Borland JBuilder, Eclipse, IntelliJ IDEA, or Sun ONE Studio, you will have to compile and run a simple program to confirm that the IDE knows where you have installed Java. Otherwise, you will have to carry out a proper setup as given in the document of the IDE.

 

Step 2 ─Install Apache Common Logging API

You can download the latest version of Apache Commons Logging API from http://commons.apache.org/logging/. Once you download the installation, unpack the binary distribution into a convenient location. For example, in C:\commons-logging-1.1.1 on Windows, or /usr/local/commons-logging-1.1.1 on Linux/Unix. This directory will have the following jar files and other supporting documents, etc.

Make sure you set your CLASSPATH variable on this directory properly otherwise you will face a problem while running your application.

 

Step 3 –SetUp Eclipse IDE

All the examples in this tutorial have been written using Eclipse IDE. So we would suggest you should have the latest version of Eclipse installed on your machine.

To install Eclipse IDE, download the latest Eclipse binaries from http://www.eclipse.org/downloads/. Once you download the installation, unpack the binary distribution into a convenient location. For example, in C:\eclipse on Windows, or /usr/local/eclipse on Linux/Unix and finally set PATH variable appropriately.

Eclipse can be started by executing the following commands on Windows machine, or you can simply double-click on eclipse.exe

%C:\eclipse\eclipse.exe

Eclipse can be started by executing the following commands on Unix (Solaris, Linux, etc.) machine:

$/usr/local/eclipse/eclipse

 

Step 4 –SetUp Spring Framework Libraries

 

Now if everything is fine, then you can proceed to set up your Spring framework. Following are the simple steps to download and install the framework on your machine.

  • Make a choice whether you want to install Spring on Windows or Unix, and then proceed to the next step to download .zip file for Windows and .tz file for Unix.
  • Download the latest version of Spring framework binaries from http://repo.spring.io/release/org/springframework/spring.
  • At the time of developing this tutorial, spring-framework-4.1.6.RELEASEdist.zip was downloaded on Windows machine. After the downloaded file was 
  • unzipped, it gives the following directory structure inside E:\spring.

Top Blogs
Spring vs Laravel : A detail Comparison between Laravel vs Spring Framework Published at:- Benefits of Using the Spring Framework Published at:- Aspect-Oriented Programming (AOP) Published at:- Data Access, Integration, and Miscellaneous in Spring framework Published at:- Spring – Environment Setup Published at:- Unleashing the Power of Microservices with Spring Boot Applications Published at:-
R4R.co.in Team
The content on R4R is created by expert teams.