Operation inconsistent with current state异常解决 找到以下进程,并杀死,便可解决 ...
分类:
其他好文 时间:
2020-07-26 01:21:44
阅读次数:
195
{"msg":"Could not marshal [ResultVo [code=100, result=null, message=ok, exception=null, data=null]]: null; nested exception is javax.xml.bind.MarshalException\n - with linked exception:\n[com.sun.istack.SAXException2: unable to marshal type \"com.domain.ResultVo\" as an element because it is missing an @XmlRootElement annotation]","errorcode":2}
分类:
其他好文 时间:
2020-07-20 11:05:43
阅读次数:
87
使用自定义异常 'exception_handle' => 'app\common\exception\ApiHandleException', <?php /** * User: xmz * Date: 2020-07-11 * Time: 01:26 */ namespace app\commo ...
分类:
移动开发 时间:
2020-07-11 10:00:56
阅读次数:
87
1问题描述通过源码运行时,一般使用如下方式读取资源文件:Stringstr="1.jpg";资源文件与源码文件放在同一目录下,或者拥有同一父级目录:Stringstr="a/b/1.jpg";这样直接编译运行没有问题,但是打成JAR包后会读取不了,直接抛空指针异常。2解决办法使用URL或者InputStream进行读取:URLurl=getClass().getClassLoader().getR
分类:
编程语言 时间:
2020-07-04 10:27:02
阅读次数:
67
1 问题描述 通过源码运行时,一般使用如下方式读取资源文件: String str = "1.jpg"; 资源文件与源码文件放在同一目录下,或者拥有同一父级目录: String str = "a/b/1.jpg"; 这样直接编译运行没有问题,但是打成JAR包后会读取不了,直接抛空指针异常。 2 解决 ...
分类:
编程语言 时间:
2020-07-04 01:32:32
阅读次数:
70
前言 在移动端web开发中,UI设计稿中设置边框为1像素,前端在开发过程中如果出现border:1px,测试会发现在retina屏机型中,1px会比较粗,即是较经典的移动端1px像素问题。 我们要对与视口、物理像素、逻辑像素、设备像素比、css像素等移动端基本概念要有一定的了解。 产生原因 设备像素 ...
分类:
移动开发 时间:
2020-07-03 19:41:31
阅读次数:
103
1.react项目导入PropTypes报错: Typo in static class property declaration react/no-typos 如果使用PropTypes一直报错,先看看是不是大小写的问题,应该是propTypes 参考文章: https://blog.csdn.n ...
分类:
其他好文 时间:
2020-07-03 12:38:30
阅读次数:
188
在执行python脚本的多进程程序时,会随机性的触发程序执行完,无法主动退出的情况。尤其是当进程数足够大时,处理的数据量足够多时。出现退出异常的概率越大。下面的脚本用于解决退出异常问题。 import argparse import requests import getpass from mult ...
分类:
编程语言 时间:
2020-06-20 21:28:54
阅读次数:
128
最近,在项目开发过程中使用了RedisTemplate,进行单元测试时提示“Field redisTemplate in com.example.demo1.dao.RedisDao required a bean of type ‘org.springframework.data.redis.co ...
分类:
编程语言 时间:
2020-06-16 15:14:43
阅读次数:
55
最近,在项目开发过程中使用了RedisTemplate,进行单元测试时提示“Field redisTemplate in com.example.demo1.dao.RedisDao required a bean of type ‘org.springframework.data.redis.co ...
分类:
编程语言 时间:
2020-06-15 12:21:53
阅读次数:
41