2021年4月25日
摘要: 转自:https://blog.csdn.net/qq_40051434/article/details/102502376 idea查看源代码出现/* compiled code */ 查看源代码时出现: 解决 Settings -> Plugins -> 输入:decompiler -> 勾选 阅读全文
posted @ 2021-04-25 22:07 小破孩楼主 阅读(659) 评论(0) 推荐(0) 编辑
摘要: request.getRequestURL() 返回全路径 request.getRequestURI() 返回除去host(域名或者ip)部分的路径 request.getContextPath() 返回工程名部分,如果工程映射为/,此处返回则为空 request.getServletPath() 阅读全文
posted @ 2021-04-25 17:17 小破孩楼主 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 1. 判断是否是基础数据类型 /** * 判断是否是基础数据类型,即 int,double,long等类似格式 */ public static boolean isCommonDataType(Class clazz){ return clazz.isPrimitive(); } 2、 判断是否是 阅读全文
posted @ 2021-04-25 16:12 小破孩楼主 阅读(536) 评论(0) 推荐(0) 编辑