SpringBoot 1024行程式碼 – Getting Started(一個簡單的web應用)

gzlwow發表於2017-10-24

前言

本文是“SpringBoot 1024行程式碼”系列的第一篇。本文介紹瞭如何用SpringBoot搭建一個簡單的web應用。

準備工作

1 安裝jdk1.8
2 安裝maven
3 具備Spring和SpringMVC的基礎知識

具體步驟

1. 在pom.xml中加入SpringBoot的引用

    <dependencies>

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

        <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>
            </plugin>
        </plugins>
    </build>

2. 建立一個程式入口類

package com.example.demo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class DemoApplication {

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

3. 新增一個SpringMVC的controller

package com.example.demo.controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class DemoController {

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

4. 驗證程式

呼叫介面

curl 127.0.0.1:8080/hello

返回結果

Hello World!

原始碼

https://github.com/gzllol/spr…

相關文章