(1)Git的使用
①git安装
②注册github账号
③Idea登录git
登陆成功
④github建立远程仓库
Idea中创建git仓库
选中文件路径
⑤idea中提交代码
提交更新文件
将需要提交的文件加入库中
提交代码
⑥将代码传入远程仓库
在github中查看上传的代码
删除仓库
⑦从远程仓库导入代码
Idea从版本控制中创建新项目
从github中获取库的代码
(2)SpringBoot项目搭建
①start.spring.io官网创建spring项目
添加依赖
项目预览
②spring MVC和spring BOOT的区别
③在idea中创建spring boot项目
④配置spring boot项目
编写application.yml配置文件
spring:
datasource:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/news?useSSL=true&characterEncoding=utf-8
username: root
password: 123456
thymeleaf:
mode: HTML
profiles:
active: dev
⑤建立项目包
⑥新建news数据库