sql injection violation, dbType mysql, druid-version 1.2.5, comment not allow

sbdsn5lh  于 3个月前  发布在  Druid
关注(0)|答案(4)|浏览(39)
filter:
    stat:
      log-slow-sql: true
      slow-sql-millis: 1000
      merge-sql: false
    wall:
      config:
        enable: true
        multi-statement-allow: true
        comment-allow: true

配置设置无效

fivyi3re

fivyi3re2#

我也遇到了类似的问题,报错如下:

Caused by: java.sql.SQLException: sql injection violation, dbType mysql, druid-version 1.2.11, comment not allow :

尝试设置了:comment-allow: true,不起作用

sh7euo9m

sh7euo9m3#

后来把 Jpa Pageable 分页里的 -- #pageable 给删除掉,然后恢复了正常。

xmjla07d

xmjla07d4#

filter:
    stat:
      enabled: true
      log-slow-sql: true
      slow-sql-millis: 1000
      merge-sql: false
    wall:
      config:
        multi-statement-allow: true
        comment-allow: true
      enabled: true

可以这样修改试试

相关问题