码迷,mamicode.com
首页 > 编程语言 > 详细

Spring Boot的简单入门

时间:2019-07-31 22:21:45      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:技术   使用   void   生成   oid   toc   引导   项目   map   

Spring Boot的主要优点:

  • 为所有Spring开发者更快的入门
  • 开箱即用,提供各种默认配置来简化项目配置
  • 内嵌式容器简化Web项目
  • 没有冗余代码生成和XML配置的要求
    创建基础项目:
  • 首先创建maven项目
  • 配置maven环境
    <--在pom.xml中添加Spring Boot相关的父级依赖 spring-boot-starter-parent提供了项目相关的默认依赖,使用它之后,常用的包可以省去version标签-->

    org.springframework.boot
    spring-boot-starter-parent
    2.0.6.RELEASE





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

  • 创建控制器Controller

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
public class helloController {

@ResponseBody
@RequestMapping("/hello")
public String hello(){
    return "hello world!";
}

}

  • 创建一个引导类
    主要作用是作为启动Spring Boot项目的入口
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;

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

  • 运行效果如下:
    技术图片

  • 在web端访问 http://localhost:8080/hello
    技术图片

Spring Boot的简单入门

标签:技术   使用   void   生成   oid   toc   引导   项目   map   

原文地址:https://www.cnblogs.com/yewu123/p/11278984.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!