2022年8月11日

spring boot 特殊案例

摘要: 一、controller层参数接收事宜: PUT操作: 1.application/x-www-form-urlencoded类型,无注解,无法接收参数; 2.application/x-www-form-urlencoded类型,@RequestBody,无法接收参数; 3.application 阅读全文

posted @ 2022-08-11 10:53 arduino 阅读(49) 评论(0) 推荐(0)

关于mybatis 特殊案例

摘要: 一、boolean类型判定: jdbcType选择BIT,选择BOOLEAN有可能无法正常识别; 一种可行方案: <choose> <when test="completed != null and 'true'.toString() == completed.toString()"> <![CDA 阅读全文

posted @ 2022-08-11 10:51 arduino 阅读(28) 评论(0) 推荐(0)

导航