Recent Posts

Spring Boot - Helloworld 入門

<div>下載 Spring Initializer</div><div>https://start.spring.io/#!type=gradle-project&language=java&platformVersion=2.2.7.RELEASE&...

Gradle - application

Run No arg main class Java  package examples; public class TestMain {     public static void main(String[] params) {   &n...

Gradle - Application 入門

執行沒有參數的 main class Java  package examples; public class TestMain {     public static void main(String[] params) {    ...

Gradle helloworld task

Edit build.gradle task helloworld {     println "Hello world" } List tasks and find helloworld $gradle tasks --all ... Ot...

Gradle Helloworld Task 入門

編輯 build.gradle task helloworld {     println "Hello world" } 列出所有 task 並找到 helloworld $gradle tasks --all ... Other task...

Gradle Helloworld - Main Class

Reference https://openhome.cc/Gossip/Spring/Gradle.html Thanks 良葛格, his explanation is so simple and good to read and practice!! Class package exam...

Gradle Helloworld - 主程式入門

參考資料 https://openhome.cc/Gossip/Spring/Gradle.html 感謝良葛格,他的說明簡單明瞭又好上手!! Class package examples; public class HelloMain {    &nbs...