Springboot学习笔记1:springboot概述
Posted Vincent9847
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot学习笔记1:springboot概述相关的知识,希望对你有一定的参考价值。
一、什么是springboot?
SpringBoot: 是一个框架,一种全新的编程规范,他的产生简化了框架的使用,所谓简化是指简化了Spring众多框架中所需的大量且繁琐的配置文件,所以 SpringBoot是一个服务于框架的框架,服务范围是简化配置文件。
目的: 为了让大家更容易的使用 Spring 、更容易的集成各种常用的中间件、开源软件。
优点:
- 为所有Spring开发者更快的入门
- 开箱即用,提供各种默认配置来简化项目配置
- 内嵌式容器简化Web项目
- 没有冗余代码生成和XML配置的要求
二、创建springboot项目
1.使用IDEA创建项目
2.填写一下项目的信息
3.勾选上依赖
4.
三、写测试
1.创建controller包,编写TestController类
package com.wwz.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/test")
public class TestController {
@RequestMapping("/hello")
public String hello() {
return "Hello World";
}
}
2.这里还用不到security安全认证,在主启动类修改代码
@SpringBootApplication(exclude = {SecurityAutoConfiguration.class})
public class SbdemoApplication {
public static void main(String[] args) {
SpringApplication.run(SbdemoApplication.class, args);
}
}
3.测试接口http://localhost:8080/test/hello
页面返回:
以上是关于Springboot学习笔记1:springboot概述的主要内容,如果未能解决你的问题,请参考以下文章
助力SpringBoot自动配置的条件注解ConditionalOnXXX分析--SpringBoo