发现一个API报了错: 一、HV000030: No validator报这个错,一般有两种情况:(1)约束与对象属性不匹配,譬如在String 上使用javax.validation.constraints.Future就会报这个错(2)真的是没有相关的Validator 一下子觉得很奇怪,难道j ...
分类:
编程语言 时间:
2020-01-12 18:31:19
阅读次数:
137
MinGW分为较早开发的MinGW32和之后为编译64位程序开发的MinGW-w64,MinGW32只能编译32位的程序,而mingw64不仅能编译64位程序,也能编译32位程序,还能进行交叉编译,即在32位主机上编译64位程序,在64位主机上编译32位程序。 由于用的window10 企业版64位 ...
分类:
其他好文 时间:
2020-01-12 11:45:38
阅读次数:
83
把项目移动到新的运行环境时,明明包都导入了,项目也放进tomcat里面了,但是还会找不到该类 解决方法:项目右键选择底下的Properties ->project facets ->java 把Runtimes里面的Apache Tomcat的勾打上 这样才算把tomcat放进类路径里面 ...
分类:
数据库 时间:
2020-01-11 15:21:47
阅读次数:
83
Question: 【SpringBoot】Spring Boot Configuration Annotation Processor not found in classpath sloution: maven方式: grade方式: ...
分类:
编程语言 时间:
2020-01-11 13:20:00
阅读次数:
128
报错内容:remote: Repository not found. fatal: repository 'https://github.com/pete/first_app.git/' not found 解决方法:三个命令中的一个git config --unset-all credential ...
分类:
其他好文 时间:
2020-01-09 20:59:37
阅读次数:
74
前言: 在用IE浏览器时访问tomcat项目时,页面报400错误,后台错误: 在网上查得资料时因为Tomcat版本在7以后会对http请求进行验证 解决办法: 1.使用encodeURI函数,因为IE浏览器无法对URL自动转义 2.JS使用post请求 ...
分类:
其他好文 时间:
2020-01-09 18:37:45
阅读次数:
64
WordPress基本模板文件一套完整的WordPress模板应至少具有如下文件:style.css: CSS(样式表)文件index.PHP : 主页模板archive.php : Archive/Category模板404.php : Not Found 错误页模板comments.php : ...
分类:
其他好文 时间:
2020-01-09 11:50:08
阅读次数:
91
最近使用mybatis的时候一直很疑惑 为什么接口名必须与Mybatis的映射文件名一定要一模一样,如果不一样就会报如下错 org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): org.xx. ...
分类:
移动开发 时间:
2020-01-08 19:04:54
阅读次数:
790
mysql死锁问题分析 线上某服务时不时报出如下异常(大约一天二十多次):“Deadlock found when trying to get lock;”。 Oh, My God! 是死锁问题。尽管报错不多,对性能目前看来也无太大影响,但还是需要解决,保不齐哪天成为性能瓶颈。 为了更系统的分析问题 ...
分类:
数据库 时间:
2020-01-08 18:37:43
阅读次数:
96
我当时提示错误是,不影响使用,可是就是报错让人不爽。 Could not autowire. No beans of 'RequestMappingHandlerMapping' type found. @Autowired private RequestMappingHandlerMapping ...
分类:
其他好文 时间:
2020-01-08 12:54:17
阅读次数:
96