# demo
**Repository Path**: Mengw9/demo
## Basic Information
- **Project Name**: demo
- **Description**: springbootdemo
- **Primary Language**: Java
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-08-24
- **Last Updated**: 2020-12-19
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# demo
# 手写springboot简单项目
使用简单手写导包实现spring boot,未使用idea自带的spring创建方法
可以更加简单理解springboot启动过程
## 开始
#### 1.打开idea创建project

#### 2.选择maven --》 next

#### 3.输入GAV
输入GroupID(com.xxx)、ArtifactId(springbootDemo)、Version默认 GAV唯一确定一个jar包 整个项目就是一个包

#### 4.选择项目存放位置

#### 5.创建成功

#### 6.附项目结构

#### 7. 添加maven依赖
```xml
io.spring.platform
platform-bom
Cairo-SR8
pom
import
org.springframework.boot
spring-boot-starter-web
```

#### 8.编写启动启动类
```java
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
```

#### 8.成功

