servlet代码中的类型信息丢失

时间:2016-02-25 22:46:52

标签: scala

我有一个与Jersey一起使用的简单flash实现,如下所示:

@PostConstruct def before { flash.rotateIn }
@PreDestroy def after { flash.rotateOut }

object flash {
  val KeyNow  = "local.flash.now"
  val KeyNext = "local.flash.next"

  // case class Wrapper(wrapped: Map[String, Seq[String]])
  case class Wrapper(wrapped: String)

  def rotateIn {
    for {
      session <- Option(request.getSession(false))
      obj     <- Option(session.getAttribute(KeyNext))
    } {
      request.setAttribute(KeyNow, obj)
      session.removeAttribute(KeyNext)
    }
  }

  def rotateOut {
    for (obj <- Option(request.getAttribute(KeyNext))) {
      request.getSession.setAttribute(KeyNext, obj)
    }
  }

  def now = Option(request.getAttribute(KeyNow)) match {
    case Some(x: Wrapper) => x.wrapped
    case Some(x) if x.isInstanceOf[Wrapper] => "WHAT"
    case _ => "NOPE"
  }

  def next(value: String) {
    request.setAttribute(KeyNext, Wrapper(value))
  }
}

我在这里稍微简化了一下,但它允许我使用flash.next为flash设置一个值,并使用flash.now读取当前的flash值。

奇怪的是我的now值总是“什么”。如果我在REPL中做类似的事情,我没有同样的问题:

val req = new org.springframework.mock.web.MockHttpServletRequest
val res = req.getSession
res.setAttribute("foo", Wrapper("foo"))
req.setAttribute("foo", res.getAttribute("foo"))
// Is not None
Option(req.getAttribute("foo")).collect { case x: Wrapper => x }

我错过了一些明显的东西吗?

修改

我添加了一个最小的示例webapp,在https://github.com/kardeiz/sc-issue-20160229复制此问题。

1 个答案:

答案 0 :(得分:2)

我试过你的例子。请查看my answer以获取您的其他问题,以了解在这种情况下模式匹配的工作原理。

简而言之,因为Wrapper是一个内部类,所以模式匹配也会检查“外部类”引用。似乎取决于应用程序服务器实现Router.flash对于每个请求可以是不同的实例,因此模式匹配失败。

简单的解决方法是使Wrapper顶级类,因此它没有引用任何其他类。