会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
fyanhui
博客园
首页
新随笔
联系
管理
订阅
2020年12月9日
oracle 执行顺序
摘要: 请问一下 是先执行1 还是先执行2
阅读全文
posted @ 2020-12-09 11:25 fyanhui
阅读(89)
评论(0)
推荐(0)
2020年8月27日
常用命令
摘要:
阅读全文
posted @ 2020-08-27 13:54 fyanhui
阅读(84)
评论(0)
推荐(0)
2020年3月20日
枚举类型
摘要: 见地址 https://sowhat.blog.csdn.net/article/details/100596880
阅读全文
posted @ 2020-03-20 17:26 fyanhui
阅读(121)
评论(0)
推荐(0)
Map 常用遍历
摘要: 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)
2020年3月10日
比较 list 和map 里面的内容有什么不一样
摘要: public void chackUserCode(String policyNo, List<String> userCodelist) throws Exception { List<InsureMainListDto> listInsureMainListDto = insureMainLis
阅读全文
posted @ 2020-03-10 10:24 fyanhui
阅读(355)
评论(0)
推荐(0)
2020年1月3日
zuul 使用的时候遇到的问题 com.netflix.client.ClientException: Load balancer does not have available server for client: COUSTOMER
摘要: 错误的 正确的 ribbon: eureka: enabled: true 报这个错误 在客户端的配置文件里面加上这个 属性设置为false 也会报错
阅读全文
posted @ 2020-01-03 15:57 fyanhui
阅读(2746)
评论(0)
推荐(0)
2019年12月23日
Erueka 常见的报错
摘要: 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)
2019年12月19日
比较两个数组里面的不同的值并 找出来
摘要: 工具类 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)
2019年12月17日
oracle 数据库子查询超过1000条数据解决方案
摘要: 查询出来的结果>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)
2019年12月10日
查看进程的命令
摘要: ps命令将某个进程显示出来(是LINUX下最常用的也是非常强大的进程查看命令) grep命令是查找(是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来,grep全称是Global Regular Expression Print,表示全局正则表达式版本,它的使用权限是所有用户
阅读全文
posted @ 2019-12-10 11:24 fyanhui
阅读(694)
评论(0)
推荐(0)
公告