08 2022 档案
摘要:maven <dependency> <groupId>org.springframework</groupId> <artifactId>spring-websocket</artifactId> </dependency> WebSocketConfig package com.new3s.co
阅读全文
摘要:问题: mybatis批量插入时报错:syntax error, expect ‘)’ 解决: 是因为传入的参数list为null,在代码中加上list.size()>0的判断。 mapper文件: <insert id="batchInsertSysUserAssoc"> insert into
阅读全文
摘要:mvn install:install-file -Dfile=C:\Users\Administrator\Desktop\spring-websocket-5.3.20.jar -DgroupId=org.springframework -DartifactId=spring-websocket
阅读全文
摘要:调用StringUtils工具类的strip()方法去掉中括号"[ ]": 或者自己写工具类 public static void main(String[] args) { String s = "[aasa, bbbbb]"; String s1 = s.replaceAll("(?:\\[|n
阅读全文
摘要:一、前言 使用websocket进行实时通信时,常见以下报错: WebSocket connection to 'ws://localhost' failed: 或者 Whoops!Lost connection to http://localhost: 网上很多方案例如重新导入fastjson依赖
阅读全文
摘要:先上结论: 1. @Transactional只能回滚RuntimeException和RuntimeException下面的子类抛出的异常 不能回滚Exception异常 2. 如果需要支持回滚Exception异常请用@Transactional(rollbackFor = Exception.
阅读全文
摘要:上传文件是116.jpg @PostMapping("/test") public R uploadFile1(MultipartFile file) throws IOException { System.out.println("file.getOriginalFilename() = " +
阅读全文
摘要:一、没有引入Shema约束的XML文档 <?xml version="1.0" encoding="UTF-8"?> <书架> <书> <书名>JavaWeb开发大全</书名> <作者>班长</作者> <售价>99.8</售价> <简介>不错</简介> </书> <书> <书名>葵花宝典</书名>
阅读全文
摘要:问题描述: 个简单的查询逻辑即查询前先从redis取,取到后则进行反序列化。 String resJson = redisService.getString(name); if (StringUtil.isNotEmpty(resJson)) { // 反序列化 return (ResultVo)J
阅读全文
摘要:直接看代码 /** * 生成航线kml文件 * * @param airlineManage 航线信息 * @return String 临时存储文件名 */ public AirlineManage setTravelsKml(AirlineManage airlineManage) throws
阅读全文