我正在尝试设置一个在Spring引导下运行的AKKA HTTP服务器上运行REST服务的项目。 现在我在gihub上找到了这个项目作为参考,并将其作为库来实现我的目标。
这是项目:https://github.com/scalaspring/akka-http-spring-boot
现在我无法找到一种方法来覆盖演员设置,例如添加新的调度程序等。我也无法覆盖默认端口号来拦截请求。我打算在带有线程池的不同调度程序上处理阻塞请求。我知道我需要创建一个application.conf
才能使其正常工作。
我创建了一个src / main.resources文件夹,其中包含application.conf
,但它没有被读取。
有人可以指导我吗?
我的application.conf看起来像这样,
my-blocking-dispatcher {
# Dispatcher is the name of the event-based dispatcher
type = Dispatcher
# What kind of ExecutionService to use
executor = "thread-pool-executor"
# Configuration for the fork join pool
thread-pool-executor {
fixed-pool-size = 16
}
# Throughput defines the maximum number of messages to be
# processed per actor before the thread jumps to the next actor.
# Set to 1 for as fair as possible.
throughput = 100
}