tech.chakapoko.com
Home / Java / Spring

[Java][Spring Boot]Spring Bootアプリケーションを新規に作成する

Spring Boot アプリケーションを新規に作成します。

pom.xml

  1. parent セクションに spring-boot-starter-parent を設定する

    スターターを追加することで便利なビルド設定などが追加されます。

  2. spring-boot-starter-web を依存ライブラリに追加する

    今回は Web アプリケーションを作成するので spring-boot-starter-web を追加します。

<?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"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.example</groupId>
    <artifactId>example</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <packaging>jar</packaging>
    <name>example</name>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.3.3.RELEASE</version>
    </parent>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>

</project>

Controller

package com.example;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@EnableAutoConfiguration
public class Example {

    @RequestMapping("/")
    String home() {
        return "Hello World!!";
    }

    public static void main(String[] args) {
        SpringApplication.run(Example.class, args);
    }

}

実行

次のコマンドでアプリケーションが起動します。

$ mvn spring-boot:run