Spring Boot简介

1. Spring Boot

1.1. 什么是Spring Boot


1.2. Spring Boot的优缺点

 

1.3. 快速入门

1.3.1. 设置spring bootparent

<parent>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-parent</artifactId>

<version>1.5.2.RELEASE</version>

</parent>

说明:Spring boot的项目必须要将parent设置为spring bootparent,该parent包含了大量默认的配置,大大简化了我们的开发。

1.3.2. 导入spring bootweb支持

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-web</artifactId>

</dependency>

1.3.3. 添加Spring boot的插件

<plugin>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-maven-plugin</artifactId>

</plugin>

1.3.4. 编写第一个Spring Boot的应用

@Controller

@SpringBootApplication

@Configuration

public class HelloApplication {

    

    @RequestMapping("hello")

    @ResponseBody

    public String hello(){

        return "hello world";

    }

    

    public static void main(String[] args) {

        SpringApplication.run(HelloApplication.class, args);

    }

 

}

代码说明:

1、@SpringBootApplicationSpring Boot项目的核心注解,主要目的是开启自动配置。;

2、@Configuration:这是一个配置Spring的配置类;

3@Controller:标明这是一个SpringMVCController控制器;

4main方法:在main方法中启动一个应用,即:这个应用的入口;

1.3.5. 启动应用

Spring Boot项目中,启动的方式有两种,一种是直接run Java Application另外一种是通过Spring BootMaven插件运行。

第一种:


第二种:

 

启动效果:


看到如下信息就说明启动成功了:

INFO 6188 --- [           main] c.i.springboot.demo.HelloApplication     : Started HelloApplication in 3.281 seconds (JVM running for 3.601)

1.3.6. 测试

打开浏览器,输入地址:


效果:


是不是很Easy?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值