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

逆水行舟用力撑,一篙松劲退千寻。这篇文章主要讲述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

文章图片

【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

文章图片


    推荐阅读