报错及异常总结
不熬夜的程序猿
武汉大学软件工程硕士
展开
-
Caused by: com.microsoft.sqlserver.jdbc.SQLServerException: 不支持从 UNKNOWN 到 UNKNOWN 的转换。
1、 使用jdbcTemplate的queryForList方法查询时,报错误如下:SQL state [null]; error code [0]; 不支持从 UNKNOWN 到 UNKNOWN 的转换。; nested exception is com.microsoft.sqlserver.jdbc.SQLServerException: 不支持从 UNKNOWN 到 UNKNOWN 的转换。 at org.springframework.jdbc.support.Abst...原创 2020-06-05 17:01:57 · 5817 阅读 · 0 评论 -
method.invoke方法如何捕获异常
try{ Method.invoke(pam1,pam2);}catch(Exception e) { throw new Exception (e.getMessage());//此处输出为null}普通的异常捕获是捕获不到invoke方法中的异常的。其实java认为用反射来调用方法时,jvm不能在编译期间确定方法的throws 类型,所以方法可能抛出的异常jvm也不能动态确定其类型,而统一抛出InvocationTargetException。我们采用下面方法捕获异常:t...原创 2020-05-25 20:33:32 · 2661 阅读 · 1 评论 -
eclipse工具中pom文件增加了依赖,却没有添加到项目中
pom文件中增加jedis依赖,却没有引入到项目中。所以报了找不到依赖的错误。解决方法: 在项目上右键------maven-------update project 即可这是在实际应用中,总结的小经验,分享下。不足之处,请矫正。...原创 2019-03-23 19:05:17 · 6033 阅读 · 1 评论 -
yml文件中出现空格引起的错误expected block end, but found block mapping start
ERROR - Application run failed java.lang.IllegalStateException: Failed to load property source from location 'classpath:/application-prod.yml' at org.springframework.boot.context.config.ConfigFileAp...原创 2019-05-08 19:13:51 · 28231 阅读 · 4 评论 -
Caused by: java.io.FileNotFoundException: class path resource [mapper/ruut/] cannot be resolved to
在多数据源配置时出现错误:Caused by: java.io.FileNotFoundException: class path resource [mapper/rule/] cannot be resolved to URL because it does not exist at org.springframework.core.io.ClassPathResource.get...原创 2019-05-08 17:39:27 · 4386 阅读 · 0 评论 -
Cannot start process, the working directory 'F:\test\hello' does not exist
Cannot start process, the working directory 'F:\test\hello' does not exist问题解决办法:选择Run-Edit configurations。然后点击Application左边的向下箭头,在Configuration下会显示出Working directory,删除即可...原创 2019-05-08 17:06:16 · 1890 阅读 · 0 评论 -
org/springframework/boot/loader/JarLauncher : Unsupported major.minor version 52.0
Exception in thread "main" java.lang.UnsupportedClassVersionError: org/springframework/boot/loader/JarLauncher : Unsupported major.minor version 52.0 at java.lang.ClassLoader.defineClass1(Nati...原创 2019-06-07 14:04:49 · 9220 阅读 · 3 评论 -
Mixed Content:'xxx' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'xxx'
1、我访问一个https页面,但是js中有个ajax请求http,url是:http//:。提示请求了一个不安全的脚本,结果发送ajax请求时,报出如下错误Mixed Content: The page at 'https:.....” was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http...原创 2019-09-29 18:32:09 · 25716 阅读 · 0 评论 -
微信访问时,提示:该地址为ip地址,请使用域名访问网站
1、微信扫描二维码,访问我的一个页面。提示下面错误。2、微信内部,应该是有个安全机制,把ip认为是不安全的访问。改成域名访问后,解决问题...原创 2019-09-30 17:54:06 · 76072 阅读 · 8 评论