spring boot 中属性注入,application.properties 自定义前缀以及使用properties 封装mysql

在上一个项目中,我们继续新建一个方法。名字是showJdbc:

spring boot 中属性注入,application.properties 自定义前缀以及使用properties 封装mysql

这个方法主要是返回一些数据库的链接。

这里主要是讲如何获取application.properties配置文件中的属性值,配置文件如下:
spring boot 中属性注入,application.properties 自定义前缀以及使用properties 封装mysql

方法一:要获取配置文件中的值,那么就得先把属性值给注入了,如下图:
spring boot 中属性注入,application.properties 自定义前缀以及使用properties 封装mysql

但是,这种方法注入太多属性值,要一个个的写,非常麻烦,并且不好看。
并且,如果几个地方都要用到数据库连接,那么,每个地方都要写上一串,冗余度大

那我们就换另外一种方法:

新建一个类MysqlProperties:
spring boot 中属性注入,application.properties 自定义前缀以及使用properties 封装mysql

spring boot 中属性注入,application.properties 自定义前缀以及使用properties 封装mysql

spring boot 中属性注入,application.properties 自定义前缀以及使用properties 封装mysql

spring boot 中属性注入,application.properties 自定义前缀以及使用properties 封装mysql

重启之后,仍能正常访问:
spring boot 中属性注入,application.properties 自定义前缀以及使用properties 封装mysql

spring boot 中属性注入,application.properties 自定义前缀以及使用properties 封装mysql

上一篇:OkHttp原理


下一篇:Emgu-WPF 激光雷达研究-移动物体跟踪