Posts

Showing posts with the label micronaut

Cara Install dan Setting Environment Micronaut serta Buat Projectc Sederhana HELLO WORD

  Install through Binary on Windows  Improve this doc Download the latest binary from  Micronaut Website Extract the binary to appropriate location (For example:  C:\micronaut ) Create an environment variable  MICRONAUT_HOME  which points to the installation directory i.e.  C:\micronaut Update the  PATH  environment variable, append  %MICRONAUT_HOME%\bin . check version micronout menngunakan cmd or powershell : mn --version Quick Start The following sections walk you through a Quick Start on how to use the Micronaut framework to set up a basic "Hello World" application. Before getting started ensure you have a Java 8 or higher JDK installed, and it is recommended that you use a  suitable IDE  such as IntelliJ IDEA Creating a Server Application pom.xml <? xml version = "1.0" encoding = "UTF-8" ?> < project xmlns = "http://maven.apache.org/POM/4.0.0" xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"   ...