基于IDEA新建一个springboot项目:
- 打开IDEA
- 注意java选择8
- 下一步可以不选依赖进项目后手动添加,也可以勾选web 等你需要的依赖
- 手动添加依赖的话有以下基本的
org.springframework.boot spring-boot-starter-jdbc mysql mysql-connector-java 8.0.18 org.springframework.boot spring-boot-starter-web
- 在application.yml 配置文件中添加数据源配置(新建的springboot项目application文件为properties根据个人习惯选择使用)
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost:3306/cps
username: root
password: root
- 运行。。
- 将新建springboot项目上传gitee
具体怎么在gitee上建仓库略,比较简单,需要集体步骤可以发评论或者 私聊
# 进入项目文件夹初始化项目 git init # 添加项目所有文件 git add . # 提交项目 commit本地 git commit -m 'first commit' # 将本地代码库和远程关联 git remote add origin gitee仓库地址 # 将远程仓库代码更新到当前分支 git pull --rebase origin master # 将本地代码推送到远程仓库 git push -u origin master



