1、如何学习springboot

springboo定义

Spring Boot可以轻松创建单独的,基于生产级的Spring应用程序,您需要做的可能“仅仅是去运行”。 我们提供了Spring Platform对Spring 框架和第三方库进行处理,尽可能的降低使用的复杂度。大多数情况下Spring Boot应用只需要非常少的配置。

Spring boot的特点

  • 快速构建独立的Spring Application,使用内嵌容器,无需部署到外部容器,你要做的仅仅是运行她。
  • 提供众多扩展的‘starter’,通过依赖探知自动配置,你要做的仅仅是添加Maven依赖。
  • 提供生产环境下的性能健康状态监控及外部化配置,让你时刻掌控她。
  • 无需生成代码及XML配置,一切从简。

配置你项目的pom.xml

image.png

image.png

创建Application.java

package com.springboot.quickstrat.controller;

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

/**
 * SpringBoot的第一个RESful的请求
 *
 */
@RestController
public class HelloController {

    @RequestMapping(value="/hello" ,method= RequestMethod.GET)
    public String getHello(){
        return "Hello,Spring Boot~~";
    }
}

启动主类

package com.springboot.quickstrat;
/**
 * SpringBoot的启动主类
 */

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

@SpringBootApplication
public class QuickstratApplication {

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

}

运行结果:


image.png

你可能感兴趣的:(1、如何学习springboot)