开发遇到的小问题
记录遇到的问题
学习中的小亮
每天进步一点。。。
展开
-
required a bean of type ‘org.springframework.web.client.RestTemplate‘ that could not be found.
启动出现如下错误:Description:Field restTemplate in com.neutech.controller.UserController required a bean of type 'org.springframework.web.client.RestTemplate' that could not be found.The injection point has the following annotations: - @org.springframe...原创 2022-05-05 21:55:11 · 1293 阅读 · 0 评论 -
java.lang.IllegalArgumentException: invalid comparison: java.time.LocalDateTime and java.lang.String
java.lang.IllegalArgumentException: invalid comparison: java.time.LocalDateTime and java.lang.String原创 2022-02-08 00:27:51 · 5179 阅读 · 0 评论 -
导入excel文件,导入的数字、身份证号码、手机号变成了科学计数法,解决方案
解决办法:BigDecimal bigDecimal = new BigDecimal(val.toString());//要修改的值,需要string类型String phoneNumber=bigDecimal .setScale(0,BigDecimal.ROUND_HALF_UP).toPlainString();一般来说直接转成Bigdecmial就可以,这样的改动是最小的...原创 2021-12-29 16:18:32 · 1583 阅读 · 0 评论