- Spring 5.0 By Example
- Claudio Eduardo de Oliveira
- 155字
- 2021-06-24 19:17:28
Installing OpenJDK
OpenJDK is a stable, free, and open source Java development kit. This package will be required for everything related to code compilation and runtime environments.
Also, it is possible to use an Oracle JDK, but you should pay attention to the License and Agreements.
To install OpenJDK, we will open a terminal and run the following command:
sudo apt-get install openjdk-8-jdk -y
We can find more information on how to install Java 8 JDK in the installation section ( http://openjdk.java.net/install/) of the OpenJDK page.
Check the installation using the following command:
java -version
You should see the OpenJDK version and its relevant details displayed as follows:

Now that we have installed the Java development kit, we are ready for the next step. In the real world, we must have a build tool to help developers to compile, package, and test the Java applications.
Let's install Maven in the next section.
推薦閱讀
- Leap Motion Development Essentials
- MATLAB應用與實驗教程
- Object-Oriented JavaScript(Second Edition)
- Magento 1.8 Development Cookbook
- PHP+MySQL網站開發項目式教程
- Python算法指南:程序員經典算法分析與實現
- 深度學習:Java語言實現
- HTML5 APP開發從入門到精通(微課精編版)
- Building Dynamics CRM 2015 Dashboards with Power BI
- Mastering Apache Storm
- Bootstrap for Rails
- OpenCV with Python Blueprints
- JBoss AS 7 Development
- Flutter之旅
- Socket.IO Cookbook