- 博客(11)
- 收藏
- 关注
原创 nacos2.x.x启动报错信息Error creating bean with name ‘grpcClusterServer‘;
Nacos启动报错
2022-06-23 17:42:50 377 1
原创 Source Tree报remote: The project you were looking for could not be found->远程仓库地址not found没有找到
报错信息如图所示:代码工程第一次我是先用的idea拉取的,随后用的这个Add同步到souretree。idea的代码提交什么的状态souretree工具会同步。用idea拉取代码的速度真的没有工具快,然后想转用工具拉取推送,但一直失败一直报错。随后思考并查贴问人(md过了很久都没有解决),我这个远程地址是HTTP请求的是需要提供账号和密码的(SSH是用密钥),在第一次idea(git)拉取的时候填过了远程端gitlab账号和密码,但souretree没有过。解决方法:http://userna
2021-12-11 18:56:27 653
原创 easyExcel使用模板填充,并在浏览器端下载导出excel
直接导出excel,访问后可下载 try { String templateFileName = System.getProperty("user.dir") + "/" + "模板测试.xlsx"; ExcelWriter excelWriter = EasyExcel.write(response.getOutputStream()).withTemplate(templateFileName).build(); WriteSheet write
2021-11-11 13:52:18 3971
原创 MVC之GET两种参数调用请求方式
第一种:@GetMapping("/down")@ApiOperation(value = "附件下载", notes = "附件下载")public void downloadFile(@RequestParam String fileId,String Id)throws Exception { attmentFileService.downloadFile(fileId);}携带参数进行拼接&第二种@GetMapping("/down/{fileId}")@
2021-09-17 14:23:49 1111
原创 使用java8的stream流将List对象转成map键加对象
@Test public void test2(){ List<User> users = new ArrayList(); users.add(new User("1","lhx","1")); users.add(new User("2","sj","2")); users.add(new User("3","tx","3")); Map<String, String> collect =.
2021-09-13 14:28:00 1195
原创 码神之路电商笔记
所用技术:springboot,dubbo,nacos,mysql,elasticsearch(商品需放在里面),spark,redis,rocketmq,sharding-jdbc等。项目开始:内部模块对外提供接口是buyer-api,调用内部的dubboservice服务(注意api是可调用多个service服务)。dubbo:...
2021-08-13 17:21:18 1073 7
原创 RedisTemplate无法get获取到值
其中的一个实现层@Autowiredprivate RedisTemplate redisTemplate;另一个实现层@Autowiredprivate RedisTemplate<String,String> redisTemplate;在第一个实现层的业务代码中,使用redisTemplate来get取值。额
2021-07-02 09:19:31 2282
原创 HashMap笔记整合
HashMap底层由数组+链表实现如果发生哈希冲突时,插入链表时使用头插法,因为一般认为后插入的元素被查找的可能性更大HashMap的初始长度为16,且每次自动扩容或手动指定初始化长度必须为2的整数次幂这是因为计算做key的hash运算时能更好的平均分布公式为:index = HashCode(Key) & (Length - 1)length为HashMap长度 &运算:全为1为1,其余为0例:HashCode为1001,若长度为16,二进制位1111,做与运算为1001,结果为
2021-06-10 13:36:14 162
原创 批量插入报org.apache.ibatis.binding.BindingException: Parameter ‘__frch_item_0‘ not found. Available para
批量插入报nested exception is org.apache.ibatis.binding.BindingException: Parameter ‘oType’ not found. Available parameters are [list, param1]异常**11
2021-03-11 08:56:03 649
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人