Spring Boot 2.X combat tutorial (3) Installation Spring Boot Environment

3. Install Spring Boot Environment

Spring Boot can use any text editor or IDE.

Java can run like any other program like Spring Boot run and debug applications.

Install JDK 3.1

Spring Boot version requires Java SDK v1.8 or higher.

Configuring the JAVA_HOME environment variable

Configuring the PATH:% JAVA_HOME% \ bin

Check the current Java installation using the following command: $ java -version

3.2 Installing Maven

Spring Boot with Apache Maven version 3.3 or higher compatible.

Configuration MAVEN_HOME environment variables

Configuring the PATH:% MAVEN_HOME% \ bin

Check the current Maven installation using the following command: $ mvn -v

 

If in doubt, watch the video: https://ke.qq.com/course/428845

 

Guess you like

Origin www.cnblogs.com/daqiang123/p/11265699.html