摘要: 1、在浏览器中预览是时候,application/octet-stream会直接下载,image/jpeg是直接显示图片出来。 2、 MediaTypes.`image/png`,和Content-Type.`application/octet-stream` ` 阅读全文
posted @ 2021-06-02 13:51 ~~。 阅读(2284) 评论(0) 推荐(0) 编辑
摘要: Dynamic stream handling 动态流处理 Dependency To use Akka Streams, add the module to your project: val AkkaVersion = "2.6.9" libraryDependencies += "com.ty 阅读全文
posted @ 2020-10-12 11:34 ~~。 阅读(351) 评论(0) 推荐(0) 编辑
摘要: Buffers and working with rate 缓冲区和工作速率 Dependency To use Akka Streams, add the module to your project: 要使用Akka Streams,请将模块添加到您的项目中: val AkkaVersion = 阅读全文
posted @ 2020-09-18 14:34 ~~。 阅读(475) 评论(0) 推荐(0) 编辑
摘要: Modularity, Composition and Hierarchy 模块性、组合性和层次性 Dependency 依赖 To use Akka Streams, add the module to your project: 要使用Akka Streams,请将模块添加到您的项目中: val 阅读全文
posted @ 2020-09-17 18:26 ~~。 阅读(376) 评论(0) 推荐(0) 编辑
摘要: Introduction In Akka Streams computation graphs are not expressed using a fluent DSL like linear computations are, instead they are written in a more 阅读全文
posted @ 2020-09-17 15:40 ~~。 阅读(473) 评论(0) 推荐(0) 编辑
摘要: 必须启用序列化才能在群集中的ActorSystems (nodes) 之间发送消息。在很多情况下,使用Jackson序列化是一个不错的选择,官网建议使用。 有关特定文档主题,请参见: 何时何地使用Akka集群 集群规范 群集成员服务 更高级别的群集工具 滚动更新 操作、管理、可观察性 1、依赖包 v 阅读全文
posted @ 2020-09-15 15:04 ~~。 阅读(305) 评论(0) 推荐(0) 编辑
摘要: 1、sbt依赖包 val AkkaVersion = "2.6.8" libraryDependencies += "com.typesafe.akka" %% "akka-stream" % AkkaVersion 2、通常从源头Source开始 import akka.stream._ impo 阅读全文
posted @ 2020-08-27 16:26 ~~。 阅读(601) 评论(0) 推荐(0) 编辑
摘要: 1、controllers 从IDEA初始化给的play2,x的模板中给的三个controllers: AsyncController、HomeController、CountController package controllers import play.api.mvc._ /** * Thi 阅读全文
posted @ 2020-07-01 14:43 ~~。 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 1、前置条件 开发工具:IDEA的开发,sbt、scala 需要注重的是sbt的版本问题:1.2.8(常常的系统默认的版本0.13.15版本影响的下载play-sbt-plugin) 、scala 2.12、play 2.7.x 第一次的sbt准备的插件大概40多分钟,主要是因为play的sbt插件 阅读全文
posted @ 2020-07-01 11:15 ~~。 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 1、从akka内的系统ActorSystem得知整个代码簇中的设置从actor与之相关的ActorSystem(), 可知:ActorSystem是一个重量级结构,它将分配线程,因此请为每个逻辑应用程序创建一个线程。通常ActorSystem每个JVM进程一个。 能够知道大体的结构关系: 重要的是要 阅读全文
posted @ 2020-05-27 10:58 ~~。 阅读(234) 评论(0) 推荐(0) 编辑