We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12471ae commit c947a13Copy full SHA for c947a13
md/start/springboot-system-requirements.md
@@ -0,0 +1,30 @@
1
+### JDK
2
+
3
+截止到目前Spring Boot 的最新版本:2.1.8.RELEASE 要求 JDK 版本在 1.8 以上,所以确保你的电脑已经正确下载安装配置了 JDK(推荐 JDK 1.8 版本)。
4
5
+### 构建工具
6
7
+构建工具(本项目涉及的代码大部分会采用 Maven 作为包管理工具):
8
9
+| **Build Tool** | **Version** |
10
+| -------------- | ----------- |
11
+| Maven | 3.3+ |
12
+| Gradle | 4.4+ |
13
14
+### 开发工具推荐
15
16
+推荐使用 IDEA 进行开发。,最好的 Java 后台开发编辑器,没有之一!
17
18
+### Web 服务器
19
20
+Spring Boot支持以下嵌入式servlet容器:
21
22
+| **Name** | **Servlet Version** |
23
+| ------------ | ------------------- |
24
+| Tomcat 9.0 | 4.0 |
25
+| Jetty 9.4 | 3.1 |
26
+| Undertow 2.0 | 4.0 |
27
28
+您还可以将Spring引导应用程序部署到任何Servlet 3.1+兼容的 Web 容器中。
29
30
+这就是你为什么可以通过直接像运行 普通 Java 项目一样运行 SpringBoot 项目。这样的确省事了很多,方便了我们进行开发,降低了学习难度。
0 commit comments