一:Springboot入门
SpringBoot是什么?
Spring Boot它本身并不提供Spring框架的核心特性以及扩展功能,只是用于快速、敏捷地开发新一代基于Spring框架的应用程序。也就是说,它并不是用来替代Spring的解决方案,而是和Spring框架紧密结合用于提升Spring开发者体验的工具。
同时它集成了大量常用的第三方库配置(例如Jackson, JDBC, Mongo, Redis, Mail等等),Spring Boot应用中这些第三方库几乎可以零配置的开箱即用(out-of-the-box),大部分的Spring Boot应用都只需要非常少量的配置代码,开发者能够更加专注于业务逻辑
注1:敏捷式开发
注2:spring boot其实不是什么新的框架,它默认配置了很多框架的使用方式,
就像maven整合了所有的jar包,spring boot整合了所有的框架
spring boot安装:



测试代码:
package com.hjc.springboot01.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* @author橙橙
* @site
* @company xxx公司
* @create 2019-12-26 20:25
*/
@RestController
@RequestMapping("/hello")
public class helloController {
@RequestMapping("c1")
public String c1(){
return "springboot 安琪拉";
}
}


二: Springboot配置文件
内置属性:
在application.properties中:
server.port=8081
server.servlet.context-path=/springboot

自定义属性:
在application.properties中:
server.port=8081
server.servlet.context-path=/
user.uname=cc
user.upwd=123

属性封装类:
导入pom依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
在application.properties中:
mysql.driver=com.mysql.jdbc.Driver
mysql.url=jdbc:mysql://localhost:3306/mysql?useUnicode=true&characterEncoding=UTF-8
mysql.username=root
mysql.password=123

来源:CSDN
作者:kiki208418895
链接:https://blog.csdn.net/kiki208418895/article/details/103721280