错误BUG
学习程序中遇到的各种问题
风里雾里
这个作者很懒,什么都没留下…
展开
-
正则表达式 保留两位小数的正数
/^(([0-9]+)|([0-9]+\.[0-9]{0,2}))$/可以使用,只有小数。或者整数。原创 2021-03-10 17:58:31 · 2397 阅读 · 0 评论 -
jsp中,后端传递的日期参数,前端格式化
<input type="text" class="form-control" disabled="" placeholder="<fmt:formatDate value='${productInterfaceCode.updatePriceTime}' pattern='yyyy-MM-dd HH:mm:ss'/>">原创 2021-03-10 16:56:22 · 362 阅读 · 0 评论 -
使用mybatisplus自动生成实体类对象报错configuration key ‘file.resource.loader.unicode‘ has been deprecated in favo
报错信息 [09:41:49.180] [WARN ] [main] [org.apache.velocity.deprecation] [configuration key 'file.resource.loader.unicode' has been deprecated in favor of 'resource.loader.file.unicode'] [09:41:49.183] [WARN ] [main] [org.apache.velocity.deprecation] [co原创 2021-01-16 10:46:49 · 8707 阅读 · 3 评论 -
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:174) at com.mysql.cj.jdbc.exceptions.SQ.原创 2021-01-14 09:32:46 · 437 阅读 · 3 评论 -
json之HashMap转换成json
import java.util.HashMap; import org.json.JSONException; import org.json.JSONObject; import com.cha.model.Person; public class test { /** * @param args */ public static void main(S...原创 2021-01-09 13:54:43 · 8431 阅读 · 0 评论 -
IDEA导入SpringBoot项目或者Maven项目(详解大全)
1.解压项目解压出后2.打开IDEA导入项目点击找到你的项目,打开项目选择maven项目,点击finsh按钮。3.启动启动类(无反应)找到原因:是maven的问题。使用maven中clear命令测试出错。4.修改maven配置这是我自己的maven配置这是下载项目的maven配置修改成第一个我自己maven配置以后,再次启动项目。(启动成功)...原创 2021-01-05 17:13:36 · 5039 阅读 · 0 评论 -
Postman测试接口传递对象参数
1.方法2.请求链接(注意我截图)3.请求原创 2021-01-04 10:47:45 · 757 阅读 · 0 评论 -
欢迎使用编辑器
这里写自定义目录标题欢迎使用Markdown编辑器新的改变功能快捷键合理的创建标题,有助于目录的生成如何改变文本的样式插入链接与图片如何插入一段漂亮的代码片生成一个适合你的列表创建一个表格设定内容居中、居左、居右SmartyPants创建一个自定义列表如何创建一个注脚注释也是必不可少的KaTeX数学公式新的甘特图功能,丰富你的文章UML 图表FLowchart流程图导出与导入导出导入欢迎使用Markdown编辑器你好! 这是你第一次使用 Markdown编辑器 所展示的欢迎页。如果你想学习如何使用Mar原创 2020-12-26 11:07:28 · 238 阅读 · 0 评论 -
Object和JSONObject字符串转换
//假设有个json字符串需要转换,, 现在试用JsonObject进行操作,要求是: key必须是字符串才行.String asString = "{\"response\":{\"isSuccess\":\"T\",\"traceList\":[{\r\n" + " \"trace\": {\r\n" + " \"billCode\": 66824545122,\r\n" + " .原创 2020-12-24 15:12:11 · 1091 阅读 · 1 评论 -
java从地址串中解析提取省市区-完美匹配中国所有地址
前言最近工作中遇到一个需求,各快递公司的官网在线寄件中都有地址识别的组件,输入姓名,电话,地址识别省市区加详细地址的方式,网上收集的解决方案是通过正则表达式匹配出省市区关键字,但是这种方式对于特殊的地址不够灵活,且兼容性不高.现在需要研发一个高可用的识别接口,该如何做到?方案首先百度找了一下灵感,网上现有的方式是通过正则表达式匹配省市区关键字,如下: /** * 解析地址 * @param address * @return */ pu原创 2020-12-23 13:46:35 · 10584 阅读 · 5 评论 -
省市区字符串截取(正则)
public class AddressResolutionUtil { /** * 解析地址 * @author lin * @param address * @return */ public static List<Map<String,String>> addressResolution(String address){ String regex="(?<province&g.原创 2020-12-23 13:32:55 · 644 阅读 · 0 评论 -
MySQL8的URL和Driver的写法
1.旧版本,MySQL Connector/J 5.x 版本的连接方式:url = jdbc:mysql://localhost:3306/user?useUnicode=true&characterEncoding=utf8driver = com.mysql.jdbc.Driver2、MySQL 8.x新版本,MySQL Connector/J 6.x之后 的连接方式:url = jdbc:mysql://localhost:3306/user?serverTimezone=原创 2020-12-17 16:33:00 · 4460 阅读 · 0 评论 -
idea断开连接git
在文件file ->settings->version control选中。原创 2020-12-17 15:34:48 · 8927 阅读 · 0 评论 -
java代码打成jar包出错
具体错误org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'channelController': Unsatisfied dependency expressed through field 'yxOpenApiService'; nested exception is org.springframework.beans.factory.BeanCreati.原创 2020-12-17 14:24:40 · 328 阅读 · 0 评论 -
git查看远程仓库的命令
git remote -v原创 2020-12-16 21:01:45 · 353 阅读 · 0 评论 -
使用mybatisplus中的selectone方法,查询一条信息。报错
错误信息:java.sql.SQLSyntaxErrorException: Unknown column 'productNumber' in 'where clause'‘问题所在:错误信息中详细说明了productNumber找不到。我误以为是实体类参数,实际上是数据库中的字段名字。解决办法: wrapper.eq("product_number",productNumber);...原创 2020-12-16 10:37:06 · 5175 阅读 · 0 评论 -
mybatisPlus配置控制台打印sql语句(详细)
1、配置文件为application.yml格式 #mybatis-plus配置控制台打印完整带参数SQL语句 mybatis-plus: configuration: log-impl: org.apache.ibatis.logging.stdout.StdOutImpl2、配置文件为application.properties格式 #mybatis-plus配置控制台打印完整带参数SQL语句 mybatis-plus.config转载 2020-12-16 10:11:31 · 7650 阅读 · 0 评论 -
Long和Integer互相转换
int i = 0; Long l = Long.parseLong(String.valueOf(i)); int back = Integer.parseInt(String.valueOf(l));原创 2020-12-15 16:01:39 · 3870 阅读 · 0 评论 -
Double转BigDecimal类型互转,保留俩位小数。
Double转BigDecimal Double channelPrice=3.1452; BigDecimal a=new BigDecimal(channelPrice); BigDecimal b =a.setScale(2, RoundingMode.HALF_UP); System.out.println(b);//b=3.14原创 2020-12-15 11:52:35 · 5273 阅读 · 2 评论 -
IDEA端口被占用,怎么解决?
问题:IDEA端口被占用,启动项目失败?失败提示 Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.] [13:43:44.022] [ERROR] [main] [org.springframework.boot.diagnostics.LoggingFailureAnalysisReporter] [原创 2020-12-09 21:34:30 · 763 阅读 · 1 评论 -
Error starting ApplicationContext. To display the conditions report re-run your application with ‘de
详细错误Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.][17:23:24.528] [ERROR] [main] [org.springframework.boot.diagnostics.LoggingFailureAnalysisReporter] [***************************AP原创 2020-12-09 17:29:47 · 647 阅读 · 0 评论 -
Error starting ApplicationContext. To display the conditions report re-run your application with ‘de
详细错误Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.][13:43:44.022] [ERROR] [main] [org.springframework.boot.diagnostics.LoggingFailureAnalysisReporter] [***************************APP原创 2020-12-08 13:46:20 · 207 阅读 · 0 评论 -
springboot使用默认日志logback日志配置信息
一、springboot默认的日志是logback二、使用springboot的slf4j日志测试日志等级信息import org.junit.jupiter.api.Test;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.tes.原创 2020-12-05 12:00:31 · 582 阅读 · 0 评论 -
springboot排除日志
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> &l...原创 2020-12-05 10:21:16 · 1317 阅读 · 0 评论 -
lombok使用没有get/set方法
下载lombok插件File-->Settings-->Plugins-->搜索lombok-->安装重新启动即可原创 2020-12-03 14:26:57 · 1211 阅读 · 0 评论 -
MybatisPlus自动生成代码后运行Springboot报错java.nio.channels.AsynchronousCloseException: null
具体错误java.nio.channels.AsynchronousCloseException: null at java.nio.channels.spi.AbstractInterruptibleChannel.end(AbstractInterruptibleChannel.java:205) ~[na:1.8.0_191] at sun.nio.ch.ServerSocketChannelImpl.accept(ServerSocketChannelImpl.java:257) ~[na原创 2020-12-03 14:24:10 · 2614 阅读 · 0 评论 -
MybatisPlus自动生成代码ApiModel报错
没有在pom文件中导入jar包 <!--配置ApiModel在实体类中不生效--> <dependency> <groupId>com.spring4all</groupId> <artifactId>spring-boot-starter-swagger</artifactId> <version>1.5.1.REL原创 2020-12-03 14:20:05 · 1029 阅读 · 0 评论 -
MybatisPlus使用出现错误java.lang.NullPointerException
使用MybatisPlus自动生成的代码,在Springboot项目中测试失败debug启动,根据id查看数据,错误查看为null找了好久错误,应该是mybatisplus生成的代码只能在它的局部中使用(解决)启动springboot,在自动生成代码的controller实现类里面测试总结:可能是mybatisplus自动生成的代码只能在自己生成的controller实现层里使用。...原创 2020-12-03 14:15:04 · 6110 阅读 · 12 评论