SpringBoot2.0之一 新建项目helloWorld
Posted somta
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot2.0之一 新建项目helloWorld相关的知识,希望对你有一定的参考价值。
SpringBoot 以简单快速很快获得了广大开发者的青睐,本套SpringBoot系列以最新的SpringBoot 2.0为基础,同时会提及不同版本下SpringBoot的修改和变化,如有理解不当的地方,欢迎留言指正!
1、新建一个Maven项目,目录结构如下
2、引入依赖包
<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies>
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启动类,出现如下所示的内容表示项目启动成功
5、最后在浏览器上输入http://127.0.0.1:8080/helloWorld 看到如下所示的界面,你的第一个SpringBoot项目就搭建成功了
Git代码地址:https://gitee.com/songhu/SpringBoot/tree/master/SpringBoot-helloWorld
以上是关于SpringBoot2.0之一 新建项目helloWorld的主要内容,如果未能解决你的问题,请参考以下文章
springboot2.0 入门程序编写(helloword)
SpringBoot2.0之五 优雅整合SpringBoot2.0+MyBatis+druid+PageHelper
springboot学习入门简易版三---springboot2.0启动方式
SpringBoot2.0系列教程Springboot框架添加Swagger2来在线自动生成接口的文档+测试功能
Android studio新建了一个hello world项目,成功进入项目后一直在gradle build runnin