Spring Boot
springboot 官网这样介绍springboot
BUILD ANDYTING
Spring Boot is designed to get you up and running as quickly as possible, with minimal upfront configuration of Spring. Spring Boot takes an opinionated view of building production ready applications.
中文翻译:Spring Boot 可以构建一切。Spring Boot 设计之初就是为了用最少的配置,以最快的速度来启动和运行 Spring 项目。Spring Boot 使用特定的配置来构建生产就绪型的项目。
(英文我也很差,但我在努力的读英文文档,希望你也是)
铭记于心
Spring Boot 的核心:约定优于配置
这就是spring boot 的设计理念。希望大家铭记于心。
开始Sping Boot 的Hello word 之旅
1. 创建
创建springboot 有很多种方式,这里访问springboot 官网这个网址 https://start.spring.io/ 来创建最初springboot 项目。
添加依赖web
2.将项目导入到ide 中
我使用的ide 是idea, 使用idea 导入 生成springboot 项目。
最初的项目结构
最初的pom 文件
image.png
spring-boot-starter-web 用于使用 Spring MVC 构建 Web 应用,包括 RESTful。Tomcat 是默认的内嵌容器
3. 编写HelloWord
a. 创建包 controller
b. 编写 HelloController 类
到此,一个简单springboot就结束了。
4. 项目启动
点击idea 右上角 启动项目
启动后控制台输出结果:
启动方式有很多种,可以了解我的springboot 三种启动方式
5.测试
访问 http://127.0.0.1:8080/hello
页面显示如下表示成功
Hello word! Welcome you come to.
网友评论