背景: 新需求需要引入新jar包,引入后发现本地启动没有报错,发到测试环境提示某个bean无法创建,nested exception is java.lang.VerifyError: Bad type on operand stack。 解决: 1,没有引入新jar包之前是没有提示这个报错了,猜测 ...
分类:
编程语言 时间:
2020-07-14 09:13:36
阅读次数:
83
1 - Concourse简介 https://concourse-ci.org https://concourse-ci.org/examples.html https://concourse-ci.org/docs.html https://resource-types.concourse-ci ...
分类:
其他好文 时间:
2020-07-14 00:19:26
阅读次数:
61
gcc get.c -o get -lpthread #include <unistd.h>#include <stdlib.h>#include <fcntl.h>#include <sys/types.h>#include <semaphore.h>#include <stdio.h>int m ...
分类:
其他好文 时间:
2020-07-13 21:19:06
阅读次数:
104
ylbtech-JavaScript-Runoob-JS 高级教程 :JavaScript String 1.返回顶部 1、 JavaScript 字符串(String) 对象 String 对象用于处理已有的字符块。 JavaScript 字符串 一个字符串用于存储一系列字符就像 "John Do ...
分类:
编程语言 时间:
2020-07-13 18:07:15
阅读次数:
62
介绍 JavaPoet 是一个用来生成 .java源文件的Java API。 使用 maven依赖 <dependency> <groupId>com.squareup</groupId> <artifactId>javapoet</artifactId> <version>1.11.1</vers ...
分类:
编程语言 时间:
2020-07-12 12:28:36
阅读次数:
65
算法流程: 实现: base.py from abc import ABCMeta, abstractmethod import types class SkoBase(metaclass=ABCMeta): def register(self, operator_name, operator, * ...
分类:
编程语言 时间:
2020-07-12 01:05:49
阅读次数:
95
一、函数 1、recvfrom函数 UDP使用recvfrom()函数接收数据,他类似于标准的read(),但是在recvfrom()函数中要指明目的地址。 #include <sys/types.h> #include <sys/socket.h> ssize_t recvfrom(int soc ...
分类:
系统相关 时间:
2020-07-11 16:52:09
阅读次数:
75
Junit单元测试 测试分类 黑盒测试:不需要写代码,给输入值,看程序能否得到输出期望值. 白盒测试:需要些代码,关注程序具体的执行流程. Junit的使用 步骤 定义一个测试类(测试用例). 定义测试方法,可以独立运行. 给方法加@Test. 导入junit依赖环境. 判断结果 红色:失败 绿色: ...
分类:
其他好文 时间:
2020-07-11 10:03:49
阅读次数:
66
React Hooks 是 React 16.8 的新功能,可以在不编写 class 的情况下使用状态等功能,从而使得函数式从无状态的变化为有的。React 的类型包 @types/react 中也同步把 .SFC (Stateless Functional Component) 改为了 React ...
分类:
其他好文 时间:
2020-07-10 00:40:00
阅读次数:
79
package com.sjw.flink.sql import org.apache.flink.api.scala._import org.apache.flink.table.api.{Table, TableEnvironment}import org.apache.flink.types. ...
分类:
数据库 时间:
2020-07-09 23:55:33
阅读次数:
145