- 博客(12)
- 收藏
- 关注
原创 vue 下载二进制文件 没有终极解决方案
后端/** * 生成Excel * * @param titleName 第一行标题名称 * @param columnList 第二行 字段内容 * @return * @throws UnsupportedEncodingException */ private ResponseEntity<byte[]> writeExcel(String ti...
2019-06-04 10:52:13 1705
原创 SpringCloud 网关路径问题
http://localhost:9999/device/device/dabj/page?current=1&size=20最起码犯了5遍的错误 不能再犯错了!!!http://localhost:9999/device 代表服务device**/dabj/page?current=1&size=20 代表具体的路径...
2019-05-31 11:36:48 823
原创 字符串乱码
首先需要搞清楚源字符串是什么编码的 要转换成什么格式的目标字符串 line = new String(line.getBytes(StandardCharsets.UTF_8), StandardCharsets.UTF_8);
2019-05-29 15:38:27 537
原创 SpringBoot测试注入Bean
设置注解@RunWith(SpringRunner.class)@SpringBootTest(classes = 启动类.class)mybatsi 层直接写Map 不需要@Param 注解Map<String, String> params =new HashMap<>();void updateState(Map<String, String&g...
2019-05-28 11:36:40 1447
原创 Swagger问题总结
1.@ApiModelProperty(value = “返回数据”) 不写example 会报错解决:#swagger本身的BUG 调整日志级别logging:level:io.swagger.models.parameters.AbstractSerializableParameter: errorexample 中不能出现特殊字符 不然会报Can't read from s...
2019-05-24 10:33:37 1551
原创 类只被使用一次就被销毁 下次还会创建新的类
报错:This code creates a java.util.Random object, uses it to generate one random number, and then discards the Random object. This produces mediocre quality random numbers and is inefficient. If possibl...
2019-05-15 13:45:57 205
原创 自动拆装箱问题
A boxed value is unboxed and then immediately reboxed.装箱的数字1000为int 拆箱之后又重新装箱!/** * 生成不带类别标头的编码 * * @param userId */ private static synchronized String getCode(Long userId) { userId = (userId == nu...
2019-05-15 13:40:20 6939
转载 linux下发布JAR包 并运行
虽然写起动shell的频率非常不高。。。但是每次要写都要对付一大堆的jar文件路径,新加jar包也必须要修改起动shell。在网上找到一个挺好的通用shell脚本。只需要修改一些配置变量,就可以用来做起动脚本了。并且除了能起动、还支持关闭、重启、查看是否正在运行的功能。原文地址:http://www.tudaxia.com/archives/10start函数中,nohup部分其实也可以...
2019-05-13 09:25:32 803
原创 接收第三方回调通知时,不知道对方发送的类型 暴力接收所有类型
@PostMapping(value = “/notify/chPayNotifyRes.htm”, consumes = MediaType.ALL_VALUE)
2019-05-13 09:23:18 550
原创 FastJosn: 字符串转换成JSONObject时是无序的, 需要转成有序的参数集合
有序: @paramStr 需要转换的字符串LinkedHashMap<String, Object> jsonMap = JSON.parseObject(paramStr, LinkedHashMap.class, Feature.OrderedField);
2019-05-09 11:50:46 956
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人