SpringBoot2核心技术-基础入门--day01
一.SpringBoot2 的基础:
学习要求
? 熟悉Spring基础
? 熟悉Maven使用
环境要求
? Java8及以上
? Maven 3.3及以上:https://docs.spring.io/spring-boot/docs/current/reference/html/getting-started.html#getting-started-system-requirements
学习资料
? 文档地址: https://www.yuque.com/atguigu/springboot
? 文档不支持旧版本IE、Edge浏览器,请使用chrome或者firefox
? 视频地址: http://www.gulixueyuan.com/ https://www.bilibili.com/video/BV19K4y1L7MT?p=1
? 源码地址:https://gitee.com/leifengyang/springboot2
二.SpringBoot2的案例入门
1、系统要求
? Java 8 & 兼容java14 .
? Maven 3.3+
? idea 2019.1.2
1.1、maven设置
nexus-aliyun
central
Nexus aliyun
http://maven.aliyun.com/nexus/content/groups/public
jdk-1.8
true
1.8
1.8
1.8
1.8
2、HelloWorld
需求:浏览发送/hello请求,响应 Hello,Spring Boot 2
2.1、创建maven工程
2.2、引入依赖
org.springframework.boot
spring-boot-starter-parent
2.3.4.RELEASE
org.springframework.boot
spring-boot-starter-web
2.3、创建主程序
/**
* 主程序类
* @SpringBootApplication:这是一个SpringBoot应用
*/
@SpringBootApplication
public class MainApplication {
public static void main(String[] args) {
SpringApplication.run(MainApplication.class,args);
}
}
2.4、编写业务
@RestController
public class HelloController {
@RequestMapping("/hello")
public String handle01(){
return "Hello, Spring Boot 2!";
}
}
2.5、测试
直接运行main方法
2.6、简化配置
application.properties
server.port=8888
2.7、简化部署
org.springframework.boot
spring-boot-maven-plugin
把项目打成jar包,直接在目标服务器执行即可。
注意点:
? 取消掉cmd的快速编辑模式