Installing OpenJDK 11
[1] Download OpenJDK 11 Installer https://aka.ms/download-jdk/microsoft-jdk-11.0.25-windows-x64.msi [2] Run Installer
Search for a command to run...
Articles tagged with #java
[1] Download OpenJDK 11 Installer https://aka.ms/download-jdk/microsoft-jdk-11.0.25-windows-x64.msi [2] Run Installer
[1] Install Java JDK !apt-get install openjdk-11-jdk [2] Create java code %%bash # Create the Java file echo 'import java.util.*; import java.io.*; public class WordFrequency { public static void main(String[] args) throws IOException { String[] wor...
[1] What is archetype version? In the context of Dropwizard, an archetype version refers to a specific version of a project template that you can use to bootstrap a new Dropwizard application. Dropwizard is a Java framework for developing RESTful web...
[1] Hello World [1.1] Create project directory mkdir helloworld cd helloworld [1.2] Create Java file // HelloWorld.java public class HelloWorld { public static void main(String[] args) { System.out.println("Hello, World!"); } } [1....
[1] Setup Java and Maven on host machine OpenJDK.v.11 Maven.v.3.8.5 [2] Prep Spring Boot project Download spring boot demo project https://archive.org/download/spring-boot/spring-boot-3-3-3-maven-demo.zip Unzip to c:\users\user\MySpringBoot\project10...
Search Microsoft OpenJDK versions winget search Microsoft.OpenJDK Output: Install version 17: winget install Microsoft.OpenJDK.17 Output: Post-installation check java -version Output: Check environment path: echo $env:JAVA_HOME Output: Refere...