springboot2.0.x升级springboot2.1.3

  由于bootdo项目需要升级springboot成2.1.3,这里记录几个要关注东西,以方便以后记录:

一、这是mysql需要高速,目前oracle不用调整

原来的mysql连接

url: jdbc:mysql://127.0.0.1:3306/bootdo?useSSL=false&useUnicode=true&characterEncoding=utf8

更新成

url: jdbc:mysql://127.0.0.1:3306/bootdo?serverTimezone=GMT%2B8&useSSL=false&useUnicode=true&characterEncoding=utf8

二、

springboot2.0.x升级springboot2.1.3_第1张图片

 

三、这个是后来免密需求添加的,原来框架不需要。

springboot2.0.x升级springboot2.1.3_第2张图片

springboot2.0.x升级springboot2.1.3_第3张图片

springboot2.0.x升级springboot2.1.3_第4张图片

你可能感兴趣的:(JAVA)