java
o12321o
这个作者很懒,什么都没留下…
展开
-
java当前线程获取HttpServletRequest对象
获取HttpServletRequest对象// 获取RequestAttributes RequestAttributes requestAttributes = RequestContextHolder.getRequestAttributes(); // 从获取RequestAttributes中获取HttpServletRequest的信息 HttpServletRequest request = (HttpServletRequest) requ原创 2021-07-01 09:24:13 · 899 阅读 · 0 评论 -
java数组或集合转换等操作
java数组或集合转换字符串数组转int数组字符串数组转int数组String[] ids= {“1”, “2”, “3”};int[] array = Arrays.asList(ids).stream().mapToInt(Integer::parseInt).toArray();int[] array = Arrays.stream(ids).mapToInt(Integer::parseInt).toArray();......原创 2021-06-29 09:38:16 · 494 阅读 · 0 评论 -
java生成最近12个月代码
java生成最近12个月代码(年月显示)import org.apache.commons.lang3.StringUtils;import org.junit.Test;import java.text.SimpleDateFormat;import java.util.Calendar;import java.util.Date;import java.util.GregorianCalendar;public class LastYear12Month { /**原创 2021-04-23 09:26:19 · 528 阅读 · 0 评论 -
window.location.url解決中文乱码
window.location.url解決中文乱码(1).页面中先对中文进行编码。ps:window.location.href = url+"&key=" + encodeURI(encodeURI(key)) ;(2).java后台解析key= java.net.URLDecoder.decode(key, “UTF-8”);原创 2021-04-21 10:54:45 · 240 阅读 · 0 评论 -
springboot项目内部方法调用aop无法拦截解決方案
springboot项目内部方法调用aop无法拦截解決方案开启aop配置获取当前动态代理并实现开启aop配置启动类增加该注解@EnableAspectJAutoProxy(exposeProxy = true,proxyTargetClass = true)获取当前动态代理并实现((sysUserService) AopContext.currentProxy()).studentList();ps:AopContext.currentProxy()此方法获取当前设置运行的动态代理...原创 2021-04-15 11:40:13 · 337 阅读 · 0 评论 -
使用ClassPathResource读取jar包里的文件
常规通过路径或者io流读jar包里的文件失败描述,会提示文件找不到异常,这个问题,首先考虑是否支持读取文件里的资源java中提供ClassPathResource进行加载资源文件,通过这个可以实现目的,menu.json是我放在class文件下的一个json文件,"module"是键名, 再通过BufferedReader流进行读取,亲测有效// An highlighted blockprivate List<Map<String, Object>> integerList原创 2021-04-06 17:56:58 · 1574 阅读 · 0 评论 -
List和HaspMap循环遍历时删除元素不会导致空指针
HaspMap删除元素不会导致空指针HaspMap删除元素不会导致空指针HaspMap删除元素不会导致空指针Iterator<Map.Entry<String, ArrayList<String>>> it = hashMap.entrySet().iterator();while (it.hasNext()) { Map.Entry<String, ArrayList<String>> entry = it.next();原创 2021-03-25 09:34:12 · 305 阅读 · 0 评论 -
java多图上传工具类
java多图上传工具类import org.springframework.util.FileCopyUtils;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestParam;import org.springframework.web.bind.annotation.ResponseBody;import org.原创 2021-03-11 13:56:05 · 109 阅读 · 0 评论 -
java通过反射处理空数组
java通过反射处理空数组/** * 通过反射处理空数组 * @param object * @throws Exception */ public static void setObjectEmptyValue(Object object) throws Exception { if (object != null) {//if (object!=null ) ----begin // 拿到该类 Class<?&g原创 2021-03-02 12:20:37 · 175 阅读 · 0 评论