bug
架构师的小跟班
这个小伙好懒,啥都没写
展开
-
java.lang.NoClassDefFoundError: org/openjdk/jol/info/ClassLayout
Maven Dependency Scopes使用 jol-core 打印对象头的信息pom.xml<dependencies> <dependency> <groupId>org.openjdk.jol</groupId> <artifactId>jol-core</artifactId> <version>0.14</version>原创 2021-03-19 20:39:46 · 2927 阅读 · 0 评论 -
mysql 自定义函数错误-1418.md
自定义函数# 工资表CREATE TABLE `test` ( `id` int NOT NULL auto_increment primary key, `salary` decimal(10,2) DEFAULT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;# 插入数据insert into test(salary) values(100);原创 2021-03-13 17:27:42 · 333 阅读 · 0 评论 -
ubuntu20.04——hdaudioC0D2: unable to bind the codec
问题不久前尝试双系统,win10+ubuntu20.04,安装比较顺利,能够正常进入系统。但是,当我更新了显卡驱动后(专有 nvidia-drivers-390),重启就无法进入系统的图形界面,一直卡在下面这个页面。如下图:解决之后,选择ubunru 高级选项,选择低版本的内核启动,却可以进入图形界面。但是,这样让我很不爽。。。最后,我找到某位大佬说进入/etc/default/grub编辑:可以使用低版本的内核启动图形界面进入编辑,也可以 Ctr+Alt+F2 进入命令行编辑;# 原原创 2021-03-02 12:35:57 · 13124 阅读 · 6 评论 -
java.lang.IllegalArgumentException: Cookie
问题一cookiecookie 的设置:Cookie cookie = new Cookie("my,cc","kelloMan");错误日志java.lang.IllegalArgumentException: Cookie name[my,sa]是一个保留令牌 javax.servlet.http.CookieNameValidator.validate(Cookie.java:454) javax.servlet.http.Cookie.<init>(Cookie.java原创 2020-12-16 15:02:41 · 2148 阅读 · 2 评论 -
cc: fatal error: cannot execute ‘cc1obj‘: execvp: No such file or directory
错误日志cc: fatal error: cannot execute 'cc1obj': execvp: No such file or directory原因缺少必需的Objective-C++编译器组件解决办法我运行Ubuntu20.04 LTS,我首先安装了gcc,然后安装了交叉编译器工具链mingw-w64。我还安装了gobjc软件包。sudo apt install gobjc++-mingw-w64sudo apt install gobjc...原创 2020-12-15 13:51:08 · 3667 阅读 · 1 评论 -
PostMan 模拟异步请求,json的时间格式问题
1 PostMan 模拟发送ajax1.1 请求头1.2 请求体1.3 后台代码及错误日志1.3.1 处理请求的代码1.3.2 错误日志2 分析3 结论1 PostMan 模拟异步请求1.1 请求头1.2 请求体1.3 后台代码及错误日志1.3.1 处理请求的代码// entitypublic class Employee { private Integer id; private String lastName; private S..原创 2020-07-19 22:22:14 · 2776 阅读 · 1 评论 -
警告 Runner org.junit.internal.runners.ErrorReportingRunner,@RunWith 注解 无法使用
警告 Runner org.junit.internal.runners.ErrorReportingRunner (used on class com.springboot.template.ApplicationDemoTest) does,同时,@RunWith 注解 无法使用1. 在Springboot整合Junit的时候编写测试类进行测试时,出现以下错误:七月 07, 2020 10:53:48 上午午 org.junit.vintage.engine.descriptor.RunnerT原创 2020-07-08 01:58:54 · 2053 阅读 · 0 评论 -
Exception: intellij failed to resolve org.junit.platform:junit-platform-launcher:1.3.2
Exception: intellij failed to resolve org.junit.platform:junit-platform-launcher:1.3.21. SpringBoot 运行单元测试时,出现此问题问题解决// 中文Intellij IDEA>首选项...>外观和行为>系统设置> HTTP代理从无代理更改为自动检测代理设置// 英文My issue was also resolved by doing the first step o原创 2020-07-08 01:57:35 · 747 阅读 · 0 评论 -
SpringBoot-单元测试-启动报错java.lang.Exception: No runnable methods
SpringBoot-测试类-启动报错【java.lang.Exception: No runnable methods】的解决办法1. springboot 单元测试代码如下package com.springboot.template;// import org.junit.Test;import org.junit.jupiter.api.Test;import org.junit.runner.RunWith;import org.springframework.boot.test.原创 2020-07-08 01:56:44 · 1090 阅读 · 0 评论