我正在创建lagom简单应用程序,定义一个休息终点并使用rest client postman命中终点。但作为回应我得到,行动没有发现错误。我将Akka与lagom集成,以下是我的代码:
服务:
trait TwitterSchedulerService extends Service {
def doWork: ServiceCall[NotUsed, Done]
override def descriptor: Descriptor = {
import Service._
named("scheduler").withCalls(
call(doWork)
)
}
}
ServiceImpl :
class TwitterSchedulerServiceImpl(system: ActorSystem) extends TwitterSchedulerService {
override def doWork = ServiceCall { _ =>
Future {
println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ")
Done
}
}
}
装载机配置:
class TwitterLoader extends LagomApplicationLoader {
override def load(context: LagomApplicationContext): LagomApplication =
new TwitterApplication(context) {
override def serviceLocator = NoServiceLocator
}
}
object TwitterSerializerRegistry extends JsonSerializerRegistry {
override val serializers = Vector(
JsonSerializer[String]
)
}
abstract class TwitterApplication(context: LagomApplicationContext) extends LagomApplication(context)
with CassandraPersistenceComponents with AhcWSComponents {
override lazy val lagomServer = LagomServer.forServices(
bindService[TwitterSchedulerService].to(wire[TwitterSchedulerServiceImpl])
)
override lazy val jsonSerializerRegistry = TwitterSerializerRegistry
}
我正在关注lagom文档http://www.lagomframework.com/documentation/1.3.x/scala/Akka.html。我想知道,为什么会出现这个错误,事件所有的休息点都被定义了???
答案 0 :(得分:7)
您的服务正在http://localhost:57211
运行http://localhost:9000正在运行Service Gateway服务器,该服务器充当项目中运行的所有服务的反向代理。
可以将Service Gateway配置为将服务调用转发到您的服务,但默认情况下不会。您可以通过在服务描述符中定义ACL(访问控制列表)来配置它。
最常见的是,您会致电withAutoAcl(true)
自动将所有服务呼叫路径转发到您的服务:
trait TwitterSchedulerService extends Service {
def doWork: ServiceCall[NotUsed, Done]
override def descriptor: Descriptor = {
import Service._
named("scheduler").withCalls(
call(doWork)
).withAutoAcl(true)
}
}
如果您想要更多地控制从Service Gateway转发到后端服务的路径,可以调用withAcls
来传递应该从服务转发的显式方法和路径正则表达式的列表网关:
trait TwitterSchedulerService extends Service {
def doWork: ServiceCall[NotUsed, Done]
override def descriptor: Descriptor = {
import Service._
named("scheduler").withCalls(
call(doWork)
).withAcls(
ServiceAcl.forPathRegex("/doWork")
)
}
}
如果您部署到ConductR(Lightbend Production Suite的一部分),服务描述符中的这些ACL配置也会用于生成ConductR ACL configuration。