Spring Boot spring.datasource.connectionProperties在1.4.1中不起作用

时间:2016-11-07 19:59:52

标签: java spring postgresql spring-boot spring-data

我在Spring Boot 1.3.3上。升级到1.4.1。

我正在使用

spring.datasource.connectionProperties:stringtype=unspecified
1.3.3中的

因为我正在使用PostgreSQL并且在我的数据库中有一个JSONB字段,这允许从字符串到JSONB的转换工作。

升级到1.4.1后,这不再有效,错误又回来了

  

错误:列" raw_data"是jsonb类型但表达式是类型   字符变化提示:你需要重写或强制转换   表达

我知道如果我这样做:

spring.datasource.url=jdbc:postgresql://localhost:5432/myDatabase?stringtype=unspecified

它再次有效,没有任何问题。我在spring文档中找不到spring.datasource.connectionProperties被删除或替换为其他内容的任何地方。

此属性删除了什么?我究竟做错了什么?我宁愿不把属性放在我的连接URL字符串中。

0 个答案:

没有答案