原理:约定优于配置的设计&&开发整合包
- springboot框架是对ssm/ssh 配置的简化
配置文件 application.yml
- 在application.yml 配置spring, mybatis/hibernate server
- jpa是标准接口 hibernate是其实现
1
2
3
4
5
6
7
8
9
10
11
12
13
14server:
port: 8083
servlet:
context-path:
spring:
datasource:
username: root
password: admin
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://127.0.0.1:3306/dbgril
jpa:
hibernate:
ddl-auto: update
show-sql: true
依赖组件:pom.xml
- 配置所需依赖&项目基本信息eg:groupId,artifactId..
1 | <?xml version="1.0" encoding="UTF-8"?> |