摘要: array = {"Google", "Runoob"} table.insert(array,1,"hello world!") for k, v in ipairs(array) do print('k->'..k .. ',v->' .. v) end table.sort(array) fo 阅读全文
posted @ 2022-09-21 17:45 90的生力军 阅读(67) 评论(0) 推荐(0) 编辑
摘要: local testlua = require "testlua" --testlua.compertoNum(1, 2, 4, 5, 11, 23, 543, 123, 45, 2131, 12) testlua.testMethod('123545') 阅读全文
posted @ 2022-09-21 17:43 90的生力军 阅读(225) 评论(0) 推荐(0) 编辑
摘要: --function maxnum(tab1) -- local b = 1 -- local a = tab1[b] -- for i, v in ipairs(tab1) do -- if v > a then -- a = v -- end -- end -- return a --end - 阅读全文
posted @ 2022-09-21 17:40 90的生力军 阅读(91) 评论(0) 推荐(0) 编辑
摘要: /** * 查询key的生命周期 * @param key redis 存数据的键 * @return 默认单位秒,也可以自行传入单位 */public long getKeyExpire(String key) { return redisTemplate.getExpire(key);} 阅读全文
posted @ 2022-07-08 16:48 90的生力军 阅读(3777) 评论(0) 推荐(0) 编辑
摘要: package ideal4j.pfa.config.redis; import cn.hutool.core.date.DateTime; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; impor 阅读全文
posted @ 2022-07-08 16:45 90的生力军 阅读(339) 评论(0) 推荐(0) 编辑
摘要: String base64Url = base64UrlArray.get(0)+"";BASE64Decoder decoder = new BASE64Decoder();returnUrl = fileService.upload(decoder.decodeBuffer(base64Url) 阅读全文
posted @ 2022-07-08 16:42 90的生力军 阅读(2212) 评论(0) 推荐(0) 编辑
摘要: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-websocket</artifactId> </dependency> 一:先导入上面的jar 二:放入websocke 阅读全文
posted @ 2022-05-30 11:53 90的生力军 阅读(938) 评论(0) 推荐(0) 编辑
摘要: 需要配置过滤器 package com.tyyy.example.coreurl.config; import com.baomidou.mybatisplus.annotation.DbType; import com.baomidou.mybatisplus.extension.plugins. 阅读全文
posted @ 2022-04-21 15:05 90的生力军 阅读(433) 评论(0) 推荐(0) 编辑
摘要: 自己写项目的时候碰到一个需求,要用到分页, mybatis-plus-boot-starter pagehelper-spring-boot-starter了解到上面的jar都提供了分页,我用的是第一个pom文件如下: <!--Spring boot整合Mybatis之通用mapper--> <de 阅读全文
posted @ 2022-04-21 14:21 90的生力军 阅读(1608) 评论(0) 推荐(0) 编辑
摘要: 需求是List里的实体转JSON,JOSN KEY统一大写。默认不做控制KEY全部是小写,不论属性是怎么设置 autoExamineService.sendMsg(code, JsonMapper.defaultMapper().toJson(comprehensiveReportList)); 后 阅读全文
posted @ 2022-02-17 15:30 90的生力军 阅读(1178) 评论(0) 推荐(0) 编辑