上一页 1 ··· 59 60 61 62 63 64 65 66 67 ··· 82 下一页
该文被密码保护。 阅读全文
posted @ 2018-12-18 18:33 lshan 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 参考:http://www.runoob.com/design-pattern/design-pattern-tutorial.html 阅读全文
posted @ 2018-12-18 18:27 lshan 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 参考:https://tech.meituan.com/DDD_in_%20practice.html 阅读全文
posted @ 2018-12-18 15:24 lshan 阅读(556) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/lixiaoer757/article/details/80272251 阅读全文
posted @ 2018-12-18 10:35 lshan 阅读(315) 评论(0) 推荐(0) 编辑
摘要: 直接使用镜像:frolvlad/alpine-oraclejre8:slim --> 不支持bash pivotalservices/jdk8-minimal:latest --> 支持bash ,可以执行shell 参考: https://my.oschina.net/shyloveliyi/bl 阅读全文
posted @ 2018-12-13 12:16 lshan 阅读(1612) 评论(0) 推荐(0) 编辑
摘要: jvm 调优参考: https://www.cnblogs.com/csniper/p/5592593.html 1.JVM以及GC JVM分为:虚拟机栈、本地方法栈、堆、方法区、程序计数器 本地方法栈:用于支持native方法的执行,存储了每个native方法的执行状态。 虚拟机栈 :占用的是操作 阅读全文
posted @ 2018-12-03 11:33 lshan 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 1. 命令处理程序从存储库中检索域对象(聚合)并执行它们的方法来更改它们的状态。这些聚合通常包含实际的业务逻辑,因此负责维护自己的状态。聚合的状态变化导致产生领域事件。领域事件和聚合形成领域模型。 2.Saga是CQRS中的概念,用于管理这些复杂的业务事物。 命令 命令描述了改变应用程序状态的意图。 阅读全文
posted @ 2018-12-01 15:56 lshan 阅读(429) 评论(0) 推荐(0) 编辑
摘要: @Context private MessageContext context; public HttpServletRequest getRequest(){ HttpServletRequest request = (HttpServletRequest) context .get(Abstra 阅读全文
posted @ 2018-11-30 15:25 lshan 阅读(936) 评论(0) 推荐(0) 编辑
摘要: eg: List<Product> products = new ArrayList<Product>(); Product[] array = products.toArray(new Product[products.size()]); 阅读全文
posted @ 2018-11-29 12:09 lshan 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/deeposcar/article/details/80710843 阅读全文
posted @ 2018-11-27 13:10 lshan 阅读(98) 评论(0) 推荐(0) 编辑
上一页 1 ··· 59 60 61 62 63 64 65 66 67 ··· 82 下一页