2019-03-07から1日間の記事一覧

brew install maven

$ brew install maven ちなみにgradleは $ brew install gradle おわり

macでtreeコマンドする

mac

$ brew install tree おわり

GroovyでHello, world!

Spring Boot CLIをinstall $ brew tap pivotal/tap $ brew install springboot Installを確認する $ spring --version Spring CLI v2.1.3.RELEASE プロジェクトを作成 hello.groovy @RestController class hello { @RequestMapping("/") def home() { "Hello…

Build path specifies execution environment JavaSE-1.8. There are no JREs installed in the workspace that are strictly compatible with this environment.

はじめに JDK 11の環境 VS Codeでspring boot のプロジェクトを作成 code.visualstudio.com Build 以下のワーニングが発生 Build path specifies execution environment JavaSE-1.8. There are no JREs installed in the workspace that are strictly compat…

$JAVA_HOME設定 MAC

JDKをインストールしたらJAVA_HOMEを設定する ディレクトリを確認 /usr/libexec/java_home 設定 export JAVA_HOME=`ディレクトリ` つまり export JAVA_HOME=`/usr/libexec/java_home` これでOK 確認 echo $JAVA_HOME

macにjava JDKをインストール

JDKとは Java Development Kit SDKはsoftware development kitのこと。 JDKはJAVAに特化していて、run time(JRE)も含まれている。 install https://www.oracle.com/technetwork/java/javase/downloads/index.html