使用spring boot开发一个简单的web 应用
使用的技术及版本
Mysql 8
JDK 8
spring boot 2.1.3
eclipse 4.6
1、登录spring官网生成spring boot工程模板,可以自行选择构建环境,开发语言,和spring boot版本,然后输入[Group]、[Artifact]、【Dependencies】,如下
如果想选mybatis这些依赖的话,可以点底部的"Switch to the full version",就会出现所有支持的依赖
2、选择完后点生成spring boot模板,如下
3、解压并导入eclipse中,因为是maven工程,所以选择Existing Maven Projects导入,如下
导入后如下
4、启动demo,找到DemoApplication,右键->“Run As”->“Java Application”,如图
启动报错了,如下
- 原因是因为使用了mysql数据库,没有添加mysql配置
- 解决方法
1、在DemoApplication上加上自动配置的注解@EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class}),如下
2、在application.properties中添加JDBC的配置
# 数据库驱动
driver=com.mysql.cj.jdbc.Driver
# 数据库连接
url=jdbc:mysql://localhost:3306/mybatis?useSSL=false&characterEncoding=utf8&serverTimezone=GMT
# 数据库用户名
username=hqh
# 数据库密码
password=Mysql123
# 定义初始连接数
initialSize=0
# 定义最大连接数
maxActive=20
# 定义最大空闲
maxIdle=20
# 定义最小空闲
minIdle=1
# 定义最长等待时间
maxWait=60000
成功启动后可以看到spring boot的版本,如下