top / index / prev / next / target / source

2018-05-21 diary: [Spring][Java] Spring Boot 最初の一歩メモ

いがぴょんの日記 日記形式でつづる いがぴょんコラム ウェブページです。

[Spring][Java] Spring Boot 最初の一歩メモ

Spring Boot 最初の一歩をメモします。

基本形の pom.xml は以下のような感じです。

pom.xml

[Maven] のための pom.xml はおおよそ以下のような感じです。

<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>my.simpleapp</groupId>
    <artifactId>MySimpleApp</artifactId>
    <packaging>jar</packaging>
    <version>1.0-SNAPSHOT</version>
    <name>MySimpleApp</name>
    <url>https://www.igapyon.jp/</url>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.2.RELEASE</version>
    </parent>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>
</project>

そして最小の 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 MyFirstController {
    @RequestMapping("/")
    @ResponseBody
    String home() {
        return "<html><body><p>はじめての Spring Boot.</p></body></html>";
    }

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

Last modified: $Date: 2018-05-23 $

登場キーワード


この日記について