Spring Boot入門

Updated: / Reading time: 2 minutes

以前、Dropwizard入門を書きましたが、Dropwizardの関連情報がちょっと少なすぎて、Spring Bootの方が良いんじゃないかなと思い始めました。

というわけで、Spring Bootを使用してみようと、ハローワールド的アプリを作成してみます。

Spring Bootとは

ココらへんを参照。

前提

  • Java 8系
  • Maven 3系

Mavenプロジェクトを作成

mvnでプロジェクトを作成します。

$ mvn -B archetype:generate -DarchetypeGroupId=org.apache.maven.archetypes -DgroupId=jp.gr.java_conf.u6k.sample_spring_boot -DartifactId=sample-spring-boot

コンパイル確認、Eclipseプロジェクト作成を行います。

$ cd sample-spring-boot
$ mvn compile
$ mvn eclipse:eclipse

.gitignoreを作成します。

/target/
.project
.classpath

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"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>jp.gr.java_conf.u6k.sample_spring_boot</groupId>
    <artifactId>sample-spring-boot</artifactId>
    <packaging>jar</packaging>
    <version>0.1.0-SNAPSHOT</version>
    <name>sample-spring-boot</name>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.2.2.RELEASE</version>
    </parent>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <mainClass>jp.gr.java_conf.u6k.sample_spring_boot.App</mainClass>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

文字列を返すだけのアプリを作成

App.javaを修正します。

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
@EnableAutoConfiguration
public class App {

    @RequestMapping("/")
    @ResponseBody
    public String home() {
        return "Hello, sample-spring-boot!";
    }

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

ビルド

パッケージングします。

$ mvn clean package

実行

実行します。

>java -jar target/sample-spring-boot-0.1.0-SNAPSHOT.jar

http://localhost:8080/にアクセスして、以下のレスポンスが返ることを確認します。

HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Content-Type: text/html;charset=UTF-8
Content-Length: 26
Date: Wed, 04 Mar 2015 10:58:46 GMT

Hello, sample-spring-boot!

停止

Ctrl + Cで停止します。

おわりに

Dropwizardに比べて手順が少ない、Springの知識が生かせる、ということでDropwizardよりSpring Bootの方が良いかなー、と思っています。

今回、作成したソースコードは、次のリポジトリにあります。