开发中问题记录2018

1. 20180410

error:string 转 double类型 出错,Double.parse("19.90")*100  出错,19.899999

done: 浮点精度导致,用decimal  

2.20180410

error: 支付宝无秘退款 MD5 加密main方法加密通过,service中ILLEGAL_SIGN 

done: md5加密工具类中获取 字节数组 getBytes 未指定编码格式导致

3.20180411

error:(Integer)1990!=Integer.valueOf("1990")  true

done:integer的比较大小要用b.intValue() 拿到真实值比较

4.20180420

error:调用OCR已封装好接口,test方法里可以,放入业务出错

done: 封装的第三方jar包和原项目冲突+编码格式未指定

5.20180511

error:spring+mybatis selectKey获取不到最后一个插入的ID

done:

6.20190225

google  api post和浏览器访问可以拿到结果,java http请求连接超时。

done: 设置代理端口

Properties systemProperties = System.getProperties();
systemProperties.setProperty("http.proxyHost", "127.0.0.1");
systemProperties.setProperty("http.proxyPort", "53096");
systemProperties.setProperty("https.proxyHost", "127.0.0.1");
systemProperties.setProperty("https.proxyPort", "53096");
systemProperties.setProperty("socksProxyHost", "127.0.0.1");
systemProperties.setProperty("socksProxyPort", "53095");

7.20190225

err:程序run 成功,debug 卡死;

canning for api listing references
14:24:40.830 INFO  springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator Line:40  - Generating unique operation named: forgetAccountUsingPOST_1

done: swagger 的坑,controller内方法 需配置路径

你可能感兴趣的:(菜鸟记)