SpringBoot2.0之一 新建项目helloWorld

SpringBoot 以简单快速很快获得了广大开发者的青睐,本套SpringBoot系列以最新的SpringBoot 2.0为基础,同时会提及不同版本下SpringBoot的修改和变化,如有理解不当的地方,欢迎留言指正!

1、新建一个Maven项目,目录结构如下

SpringBoot2.0之一 新建项目helloWorld_第1张图片

2、引入依赖包


    
        org.springframework.boot
        spring-boot-starter-web
    

3、创建SpringBoot的启动类

package com.somta.springboot;

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

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

查看@SpringBootApplication源码可以发现,该注解被 @Configuration、@EnableAutoConfiguration、@ComponentScan 注解所修饰,换言之 Springboot 提供了统一的注解来替代以上三个注解,达到简化程序的配置,具体每个配置的作用在后续文章中会更新

4、创建一个Controller类

@RestController
public class HelloWorldController {
    @RequestMapping("/helloWorld")
    public String index() {
        return "HelloWorld";
    }
}

5、启动SpringBoot启动类,出现如下所示的内容表示项目启动成功

SpringBoot2.0之一 新建项目helloWorld_第2张图片

5、最后在浏览器上输入http://127.0.0.1:8080/helloWorld 看到如下所示的界面,你的第一个SpringBoot项目就搭建成功了

SpringBoot2.0之一 新建项目helloWorld_第3张图片

Git代码地址:https://gitee.com/Somta/Sprin...

原文地址:http://somta.com.cn/#/blog/vi...

本文由明天的地平线创作,如想了解更多更详细的内容,请关注一下公众号,公众号内将进行最新最实时的更新!

SpringBoot2.0之一 新建项目helloWorld_第4张图片

你可能感兴趣的:(helloworld,springboot)