如何配置tcpkeepalive value设置为true的属性值?
我已经试过了
spring:
datasource:
connection-properties: tcpKeepAlive=true
connectionproperties: tcpKeepAlive=true
然而,没有成功。
hikariconfig确实包含properties对象,但是如何在加载这些值的yml文件中定义这些值呢?
如何配置tcpkeepalive value设置为true的属性值?
我已经试过了
spring:
datasource:
connection-properties: tcpKeepAlive=true
connectionproperties: tcpKeepAlive=true
然而,没有成功。
hikariconfig确实包含properties对象,但是如何在加载这些值的yml文件中定义这些值呢?
1条答案
按热度按时间eqqqjvef1#
假设此属性是驱动程序的连接属性,则需要配置
dataSourceProperties
上的属性hikari
. 你可以这样做:或者,可以将属性包含在
spring.datasource.url
财产。