云胡不安

2020年9月24日

HttpService和WebService的异同

摘要: HttpService使用http协议,调用本系统服务一般使用。 WebService使用soap协议,跨应用、跨平台一般使用 阅读全文

posted @ 2020-09-24 14:24 云胡不安 阅读(143) 评论(0) 推荐(0) 编辑

2020年9月16日

java.lang.NoSuchMethodException: com.xxx.Xxx.<init>()

摘要: The message means that someone tried to call a constructor without any parameters. Adding a default constructor should solve this problem: 添加一个无参构造器即可 阅读全文

posted @ 2020-09-16 16:52 云胡不安 阅读(617) 评论(0) 推荐(0) 编辑

无效的目标发行版

摘要: 编译报错:无效的目标发行版 11 1. 检查pom文件,发现java.version配置错误,修改为1.8,编译通过<properties> <java.version>1.8</java.version></properties> 阅读全文

posted @ 2020-09-16 13:59 云胡不安 阅读(652) 评论(0) 推荐(0) 编辑

时间段间隔查询

摘要: --间隔一小时 select sysdate + level / 24 as st, sysdate + (level + 1) / 24 as ed from dual connect by level < = 24 --添加业务 select intv.st, intv.ed, (select 阅读全文

posted @ 2020-09-16 13:55 云胡不安 阅读(230) 评论(0) 推荐(0) 编辑

导航