最近遇到一个诡异的问题,底层原因还有待分析,现在排查过程写出来。 本人要参与一个项目二次开发中,把这个SpringBoot项目挡下来之后,启动成功,到现在都是正常的,当访问主页时报错了,错误如下: 2021-05-14 09:44:40.144 INFO 24164 [ main] com.zaxx ...
分类:
数据库 时间:
2021-05-24 08:50:48
阅读次数:
0
服务端 public static void main(String[] args) { ServerSocket serverSocket = null; Socket socket = null; InputStream inputStream = null; ByteArrayOutputSt ...
分类:
编程语言 时间:
2021-05-24 08:23:25
阅读次数:
0
Cpp primer plus notes ch2. get start #include 预处理器编译指令。 using namespace 编译指令。 void关键字显示说明不接受任何参数。 //myfirst.cpp #include <iostream> int main(void) { u ...
分类:
其他好文 时间:
2021-05-24 08:11:29
阅读次数:
0
#include <stdio.h> int main (void) { signed short int a1;//有符号short unsigned short int a2;//无符号short signed int b1; unsigned int b2; signed long int c ...
分类:
编程语言 时间:
2021-05-24 08:09:05
阅读次数:
0
i++:先引用后加 ++I:先加后引用 示例代码: public static void main(String... args) { int a = 88; int c = a++; System.out.println(a); System.out.println(c); int b = 99; ...
分类:
其他好文 时间:
2021-05-24 08:08:47
阅读次数:
0
ThreadLocal 分析 首先我们看一下下面这个程序 public class ThreadLockDemo { //初始tl per对象名是 zs static ThreadLocal<per> tl = new ThreadLocal<per>() { protected per initi ...
分类:
其他好文 时间:
2021-05-24 07:59:20
阅读次数:
0
什么是方法 方法定义 方法调用 方法重载 方法类型也可相同,只要参数类型不同就行, 例: public static void main(String[] args) { double sum1 = add(6.0,2); System.out.println(sum1); } public sta ...
分类:
编程语言 时间:
2021-05-24 07:38:03
阅读次数:
0
可变参数 package com.luo.method; public class Demo4 { public static void main(String[] args) { Demo4 demo4 = new Demo4(); demo4.test(1, 2, 3, 4, 5); } pub ...
分类:
其他好文 时间:
2021-05-24 07:25:57
阅读次数:
0
#引言 在开发过程中,因为编程经验不足,经常会导致各种各样的溢出,今天本文就举例说明几种常见的溢出 ##堆溢出 堆溢出是最常见的一种溢出。 导致原因:堆中没有足够的空间储存新生成的实例对象 public static void main(String[] args) { List<TestCase> ...
分类:
编程语言 时间:
2021-05-24 07:17:50
阅读次数:
0
Controller import java.util.HashMap; import java.util.Map; import java.util.Random; import java.util.concurrent.TimeUnit; import com.alibaba.fastjson. ...
分类:
其他好文 时间:
2021-05-24 07:14:01
阅读次数:
0