首先先简单的看一个例子 public static void main(String[] args) {String [] s {"4","3"};List<String> list Arrays.asList(s);list.add("2");System.out.println(list.size());}
这段代码看起来好像没啥子问题撒,编译正常,但是运行…
mysql中通常的模糊查询使用like语句,但是有时候需要匹配多个条件进行模糊查询,like就无法满足了,比图所示,我们需要查询content字段中包含建设和统计的字段,like语句就无法满足了所以就需要使用REGEXP函数,如下所示select * from table where content REGEXP 建设|统计需要统计…
配置dubbo服务xml后,程序能正常执行,但validate会出现一些异常: Multiple annotations found at this line: - cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for e…