4

我正在尝试在 finagle 中托管静态资源,例如 javascript 和 css 文件。

我已经设法让它工作,但我必须专门配置每条路由到我的路由服务中的资源文件夹。例如:

def build():RoutingService[Request with Request] = {
      val routingService = RoutingService.byPathObject {
        case Root => ControllerRegistry.rootController.root()
        case Root / "public" / resource =>  ControllerRegistry.publicController.findPublic()
        case Root / "public" / "bootstrap"/ "css" / resource => ControllerRegistry.publicController.findPublic()

      }
      routingService
    }

def findPublic(): Service[Request, Response] = {
      val findPublic = new Service[Request, Response] {
        def apply(request: Request) = {
          Future {
            val resource = Path(request.path) match {
              case Root / "public" / resource => getResourceText(s"/public/$resource")
              case Root / "public" / "bootstrap" / "css" / resource => getResourceText(s"/public/bootstrap/css/$resource")
              case _ => throw new IllegalStateException
            }

            val response = Response()

            response.setContent(copiedBuffer(resource, UTF_8))
            response
          }
        }
      }
      findPublic
    }

现在我可以在publicand中获取任何资源,但如果没有更多配置public/bootstrap/css,我将无法获取。public/bootstrap/js

4

1 回答 1

6

TLDR:Finagle 并不是完全适合你做你想做的事。您可以使用构建在finagle之上的 Finatra 之类的东西。

长版:Finagle 旨在构建分布式系统,它不是像 ruby​​ on rails 这样的 Web 框架(即使 finagle-http 提供了非常基本的功能)。它使构建相互交互的服务变得容易(并处理负载平衡、超时、断开连接、背压、分布式跟踪,......)在 Twitter,我们有一个构建在 finagle 之上的 Web 框架库,但它尚未开源,在此期间您可以使用Finatra

于 2013-09-10T05:01:43.230 回答