入坑

MessageFormat 格式化字符串问题

String content = "测试:{0} 这个是链接";
String formatMsg = MessageFormat.format(content , "格式化后会将原字符串中的 ' 去掉");
System.out.println(formatMsg);
输出: 测试:格式化后会将原字符串中的 ' 去掉 这个是链接

 

mybatis
默认返回的是匹配的行数(Rows matched)而不是实际影响的行(rows affected),导致根据返回值进行判断时可能出现逻辑错误。

修改方案

JDBC连接数据的URL问号后面添加 useAffectedRows=true
jdbc:mysql://${jdbc.host}/${jdbc.db}?useAffectedRows=true

这样返回值就是直接影响的行数,而不是匹配到的行数

 

转载于:https://my.oschina.net/yasser/blog/3058766

你可能感兴趣的:(入坑)