SpringBoot/Gradle で Hello World
6516 ワード
環境
- Windows10
- IntelliJ IDEA
- Git Bash
ディレクトリ構成
build.gradle
ここ を参考に build.gradle に定義を記載していきます。
build.gradle
plugins {
id 'org.springframework.boot' version '2.3.3.RELEASE'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
def defaultEncoding = 'UTF-8'
tasks.withType(AbstractCompile) each { it.options.encoding = defaultEncoding }
compileTestJava {
options.encoding = defaultEncoding
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
test {
useJUnitPlatform()
}
Hello World
2つのクラスに記載します。
BootApp.java
package org.example;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class BootApp {
public static void main(String[] args) {
SpringApplication.run(BootApp.class, args);
}
}
Controller.java
package org.example;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.RequestMapping;
@RestController
public class Controller {
@RequestMapping("/")
public String index() {
return "\nHello World!";
}
}
BootApp.java を実行し、GitBash で確認します。
$ curl http://localhost:8080/
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 13 100 13 0 0 149 0 --:--:-- --:--:-- --:--:-- 149
Hello World!
参考
Author And Source
この問題について(SpringBoot/Gradle で Hello World), 我々は、より多くの情報をここで見つけました https://qiita.com/hfh3oa/items/dffba03df3c201d5d053著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .