上一页 1 2 3 4 5 6 7 8 ··· 14 下一页
摘要: 分布式事务 什么是分布式事务 什么情况下使用分布式事务?为什么? 使用分布式事务的方式有哪些 分布式链路追踪 调用链选型 https://www.jianshu.com/p/0fbbf99a236e https://toutiao.io/posts/5oy7zl/preview netty 使用 保 阅读全文
posted @ 2021-09-14 16:42 Fake_coder 阅读(45) 评论(0) 推荐(0)
摘要: 股票买卖问题 leetcode 121 一次买入一次卖出,并获取最大利润,只要求返回最大利润 只要记录介质目前为止的最低价格,并且计算截至目前为止的最大利润就行 class Solution { public static int maxProfit(int[] prices) { int[] dp 阅读全文
posted @ 2021-09-13 16:46 Fake_coder 阅读(46) 评论(0) 推荐(0)
摘要: 1. 基本概念 认证:判断用户的身份是否合法 会话:判断用户的登录状态 授权:判断用户对某个资源的操作权限 授权的数据模型:用户-(用户角色关系)-角色-(角色权限关系)-权限-(资源) 两种RBAC的授权认证设计:1.基于角色的认证;2.基于资源的认证 阅读全文
posted @ 2021-09-11 17:44 Fake_coder 阅读(64) 评论(0) 推荐(0)
摘要: public static void traversal(TreeNode root){ LinkedList<TreeNode> stack = new LinkedList<>(); TreeNode p = root; int sum = 0; while (p != null || !sta 阅读全文
posted @ 2021-09-04 16:47 Fake_coder 阅读(27) 评论(0) 推荐(0)
摘要: L494 //方法一:回溯法 class Solution { public static int findTargetSumWays(int[] nums, int target) { cnt =0; recurve(nums, 0, 0, target); return cnt; } stati 阅读全文
posted @ 2021-09-01 09:24 Fake_coder 阅读(119) 评论(0) 推荐(0)
摘要: Linux相关 https://redwingz.blog.csdn.net/article/list/16 MDN https://developer.mozilla.org/zh-CN/docs/Web/HTTP 阅读全文
posted @ 2021-08-28 09:36 Fake_coder 阅读(23) 评论(0) 推荐(0)
摘要: 查拉图斯特拉如是说 1.三种变形 骆驼,狮子和孩子:负重与坚持,自我追求,与遗忘过往 2.德性讲坛 阐明了尼采对于人生的意义的态度 幸福乃是清醒的维护好的睡眠 3.彼世论者 阐明了尼采对于神秘主义,对于神,对于宗教信仰的的态度 他原是人类,而且只不过是人类和自我的可怜的一部分 那是痛苦和无能———— 阅读全文
posted @ 2021-08-20 00:04 Fake_coder 阅读(766) 评论(0) 推荐(0)
摘要: 0 日志框架综合 https://blog.csdn.net/pengjunlee/article/details/80249915 https://www.cnblogs.com/chenhongliang/p/5312517.html 1.JUL java.util.logging包 Logge 阅读全文
posted @ 2021-08-17 18:11 Fake_coder 阅读(36) 评论(0) 推荐(0)
摘要: java dom操作 dom io 1.common-io guava学习 user-guide https://github.com/google/guava/wiki 1.Using and avoiding null null避免 阅读全文
posted @ 2021-08-11 15:31 Fake_coder 阅读(38) 评论(0) 推荐(0)
摘要: 一 先验原理论 导言 直观 :知识不问其以何种式样何种方法与对象相关,其所由以直接与相关,及一切思维所由以得其质料者,为直观 感性: “由吾人为对象所激动之形相以接受表象”之能力(感受性),名为感性 感觉:在吾人被对象激动之限度内,对象所及于“表象能力”之结果,为感觉 由感觉于对象相关之直观,名为经 阅读全文
posted @ 2021-08-11 15:18 Fake_coder 阅读(873) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 14 下一页