Spring Boot快速建立HelloWorld项目

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot快速建立HelloWorld项目相关的知识,希望对你有一定的参考价值。

Spring Boot使我们更容易去创建基于Spring的独立和产品级的可以”即时运行“的应用和服务。支持约定大于配置,目的是尽可能快地构建和运行Spring应用。

构建环境

JDK 6+

Maven

 

创建项目

1.使用Maven创建一个普通Maven应用即可。

2.修改pom.xml文件

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.4.1.RELEASE</version>
</parent>
<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
</dependencies>

3.创建java文件SampleController.java

package hello;

import org.springframework.boot.*;
import org.springframework.boot.autoconfigure.*;
import org.springframework.stereotype.*;
import org.springframework.web.bind.annotation.*;

@Controller
@EnableAutoConfiguration
public class SampleController {

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

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

4.Run As Java Application

以上是关于Spring Boot快速建立HelloWorld项目的主要内容,如果未能解决你的问题,请参考以下文章

Springboot:Spring Boot 之 HelloWorld

Spring Boot Learning(helloWorld)

Spring Boot学习笔记:简介与HelloWorld搭建

微服务-快速起手Helloworld

Spring基础 快速入门spring boot SPRING INITIALIZR

Spring Boot 基础快速构建项目,在浏览器和后台显示输出结果