Spring Boot – How to change Tomcat port
In Spring Boot, to change the embedded Tomcat initialized port (8080), update server.port properties. Tested with Spring Boot 1.4.2.RELEASE
Favourite tutorials for developers
Java is a high-level, class-based, object-oriented programming language that is designed to have as few implementation dependencies as possible. It is a general-purpose programming language intended to let programmers write once, run anywhere (WORA), meaning that compiled Java code can run on all platforms that support Java without the need to recompile.
In Spring Boot, to change the embedded Tomcat initialized port (8080), update server.port properties. Tested with Spring Boot 1.4.2.RELEASE
This tutorial shows you how to set a JAVA_HOME system variable on Windows 10. Tested with :Windows 10JDK 1.8
This article shows how to install Maven (3.6.3) on macOS Big Sur (version 11.1). We can use Homebrew to install Maven on macOS . If Homebrew failed you or you…
To install Apache Maven on Windows, you just need to download the Maven’s zip file, unzip it to a folder, and configure the Windows environment variables. Tested with :JDK 10,…
In this tutorial, we will show you how to install Apache Maven on Ubuntu. Tested with: Maven 3.5.2, Ubuntu 18.04 . Before the Maven installation, make sure JDK is installed…
This article shows how to set the $JAVA_HOME environment variable on older Mac OS X and the latest macOS 11. Steps to set the $JAVA_HOME environment variable on macOS: 1…
This article shows how to install Java JDK on macOS, Homebrew package manager, manual installation, and switch between different JDK versions. Tested with: macOS 11 Big Sur; Homebrew 2.7.4J; DK…
On Ubuntu, we can add JAVA_HOME environment variable in /etc/environment file. Note/etc/environment system-wide environment variable settings, which means all users use it. It is not a script file, but rather…
The Java development kit (JDK) contains tools for Java development, and the Java Runtime Environment (JRE) contains a JVM to convert byte code .class to machine code, and execute it,…
This tutorial shows you how to install OpenJDK 8, 11, 16, and other JDK builds on Ubuntu 20. Use APT to Install JDK (OpenJDK 8 and 11) . If we…