摘要: 请问一下 是先执行1 还是先执行2 阅读全文
posted @ 2020-12-09 11:25 fyanhui 阅读(89) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-08-27 13:54 fyanhui 阅读(84) 评论(0) 推荐(0)
摘要: 见地址 https://sowhat.blog.csdn.net/article/details/100596880 阅读全文
posted @ 2020-03-20 17:26 fyanhui 阅读(121) 评论(0) 推荐(0)
摘要: public class Test_map { public static void main(String[] args) { Map<String, String> map = new HashMap<>(); map.put("1", "Language"); map.put("2", "C+ 阅读全文
posted @ 2020-03-20 16:56 fyanhui 阅读(138) 评论(0) 推荐(0)
摘要: public void chackUserCode(String policyNo, List<String> userCodelist) throws Exception { List<InsureMainListDto> listInsureMainListDto = insureMainLis 阅读全文
posted @ 2020-03-10 10:24 fyanhui 阅读(355) 评论(0) 推荐(0)
摘要: 错误的 正确的 ribbon: eureka: enabled: true 报这个错误 在客户端的配置文件里面加上这个 属性设置为false 也会报错 阅读全文
posted @ 2020-01-03 15:57 fyanhui 阅读(2746) 评论(0) 推荐(0)
摘要: java.lang.IllegalStateException: Failed to load property source from location 'classpath:/application.yml' 错误配置如下: 正确配置: 不能加载application.yml 文件 阅读全文
posted @ 2019-12-23 16:28 fyanhui 阅读(146) 评论(0) 推荐(0)
摘要: 工具类 public static <T> List<T> compare(T[] t1, T[] t2) { List<T> list1 = Arrays.asList(t1); List<T> list2 = new ArrayList<T>(); for (T t : t2) { if (!l 阅读全文
posted @ 2019-12-19 15:26 fyanhui 阅读(1882) 评论(0) 推荐(0)
摘要: 查询出来的结果>1000条 select vl.UNIT_CODEfrom VC_LEVEL vlwhere vl.UNIT_TYPE = 0and vl.VALID_STATUS = 1and vl.LEVEL_NO <= 3start with vl.ID_VC_LEVEL = 694conne 阅读全文
posted @ 2019-12-17 14:57 fyanhui 阅读(2527) 评论(0) 推荐(0)
摘要: ps命令将某个进程显示出来(是LINUX下最常用的也是非常强大的进程查看命令) grep命令是查找(是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来,grep全称是Global Regular Expression Print,表示全局正则表达式版本,它的使用权限是所有用户 阅读全文
posted @ 2019-12-10 11:24 fyanhui 阅读(694) 评论(0) 推荐(0)