How to install Java JDK on Ubuntu
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…
Favourite tutorials for developers
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…
Tomcat, often called Apache Tomcat, is one of the most popular applications designed to execute a Java servlet and render web servers with Java page coding.It is an open-source application…
Tomcat, often called Apache Tomcat, is one of the most popular applications designed to execute a Java servlet and render web servers with Java page coding. It is an open…
Apache Tomcat or simply Tomcat (formerly it was also known as Jakarta Tomcat) is an open source web server and servlet container developed by the Apache Software Foundation (ASF). Tomcat…
This tutorial shows you how to install Tomcat on Ubuntu, with help of the buith-in apt-get command.
To enable proxy access in Maven, define the proxy server detail in {MAVEN_HOME}/conf/settings.xml . Note: There is a high chance your company is set up an HTTP proxy server to…
Not every library is stored in the Maven Central Repository, some libraries are only available in Java.net or JBoss repository (remote repository). This article will show how to add some…
By default, Maven will get project dependencies from Maven Local Repository, if it is not found, Maven will get it from the Maven Central Repository. (1) - Maven Central Repository…
By default, Maven local repository is defaulted to ${user.home}/.m2/repository folder. Unix/Mac OS X – ~/.m2/repository . Windows – C:\Users\{your-username}\.m2\repository . When we compile a Maven project, Maven will download all…
For Java libraries that are not available in the Maven Central or other Maven repositories, we need to install it into our Maven Local repository in order to use it…