上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 44 下一页

java如何计算两个经纬度之间的距离?

摘要: /*计算两个经纬度之间的距离 结果单位:米 */public static double getDistance(String lat1Str, String lng1Str, String lat2Str, String lng2Str) { Double lat1 = Double.parseD 阅读全文
posted @ 2018-04-17 14:34 小甜瓜安东泥 阅读(4080) 评论(0) 推荐(0) 编辑

java的list转map

摘要: companyList = companyManager.listByCompanyId(companyIds);departList = departManager.findByTree(departIds); Map<Long, SysCompany> companyMap = Maps.uni 阅读全文
posted @ 2018-04-17 13:34 小甜瓜安东泥 阅读(311) 评论(0) 推荐(0) 编辑

mybatis的oracle的in超过1000的写法

摘要: <if test="preIds != null and preIds.size() > 0"> AND PRE_ID IN <trim suffixOverrides=" OR PRE_ID IN ()"> <foreach collection='preIds' open='(' close=' 阅读全文
posted @ 2018-04-16 09:56 小甜瓜安东泥 阅读(1689) 评论(0) 推荐(0) 编辑

mysql数据库如何设置表名大小写不敏感?

摘要: 转自:https://blog.csdn.net/iefreer/article/details/8313839 在跨平台的程序设计中要注意到mysql的一些系统变量在windows和linux上的缺省值是不同的, 比如mysql表名称的大小写变量. 在windows上lower_case_tabl 阅读全文
posted @ 2018-04-13 15:12 小甜瓜安东泥 阅读(713) 评论(0) 推荐(0) 编辑

Value '0000-00-00 00:00:00' can not be represented as java.sql.Timestamp;

摘要: 转自:https://blog.csdn.net/u010466329/article/details/72846512 代码中查询MySQL的结果集时报错,提示Value ‘0000-00-00 00:00:00’ can not be represented as java.sql.Timest 阅读全文
posted @ 2018-04-13 14:18 小甜瓜安东泥 阅读(221) 评论(0) 推荐(0) 编辑

resolution will not be reattempted until the update interval of vas has elap

摘要: 转自:http://kia126.iteye.com/blog/1785120 maven在执行过程中抛错: 引用 ... was cached in the local repository, resolution will not be reattempted until the update 阅读全文
posted @ 2018-04-08 11:04 小甜瓜安东泥 阅读(498) 评论(0) 推荐(0) 编辑

java.lang.IllegalArgumentException: Failed to decrypt.

摘要: 加密失败。 附加信息: org.springframework.transaction.CannotCreateTransactionException: Could not open JDBC Connection for transaction; nested exception is java 阅读全文
posted @ 2018-04-03 10:48 小甜瓜安东泥 阅读(5052) 评论(0) 推荐(1) 编辑

SpringMVC如何接收json数据

摘要: 请求头:Content-Type=application/json数据如:{"mobile":"12345678912","smsContent":"今天天气很好!!","sendTime":"2017-05-18 22:43:21","addSerial":"106591111"}import c 阅读全文
posted @ 2018-03-30 14:00 小甜瓜安东泥 阅读(3673) 评论(0) 推荐(1) 编辑

IntelliJ中的main函数和System.out.println()快捷输入方式

摘要: 转自:https://blog.csdn.net/assassinsshadow/article/details/73557375 main快捷输入 psvm System.out.println()快捷输入 sout main快捷输入 psvm System.out.println()快捷输入 s 阅读全文
posted @ 2018-03-28 14:51 小甜瓜安东泥 阅读(235) 评论(0) 推荐(0) 编辑

org.apache.zookeeper.ClientCnxn - Got ping response for sessionid: 0x160fd6f04410017 after 0ms

摘要: dubbo报错: org.apache.zookeeper.ClientCnxn - Got ping response for sessionid: 0x160fd6f04410017 after 0ms 原因:dubbo注册的服务有重复的service名称或实现类; 阅读全文
posted @ 2018-03-28 10:58 小甜瓜安东泥 阅读(4436) 评论(0) 推荐(0) 编辑
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 44 下一页