摘要:
数组转集合 String[] s = new String[]{"A", "B", "C", "D","E"}; List<String> list = Arrays.asList(s); List Set互转 List转SetSet<String> set = new HashSet<>(list 阅读全文
摘要:
原因是在xml文件里面“<”会被解析成新的元素开始 错误写法 报错 tag name expected <if test="name != null and name != ''"> AND name < #{name}</if>解决方案如下:1: <if test="name != null an 阅读全文