没有使用scalatra的Jetty的servlet错误的multipartconfig [英] No multipartconfig for servlet error from Jetty using scalatra

查看:547
本文介绍了没有使用scalatra的Jetty的servlet错误的multipartconfig的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试对上传调用进行单元测试,但由于以下代码,我收到此错误:

I am trying to unit test an upload call but I get this error for the following code:

@MultipartConfig(maxFileSize = 3145728)
class WebServlet extends ScalatraServlet with FileUploadSupport {
  override def isSizeConstraintException(e: Exception) = e match {
    case se: ServletException if se.getMessage.contains("exceeds max filesize") ||
      se.getMessage.startsWith("Request exceeds maxRequestSize") => true
    case _ => false
  }
  error {
    case e: SizeConstraintExceededException => RequestEntityTooLarge("too much!")
  }
  post("/uploadscript") {
    val privateParam = try {params("private") != null && params("private").equals("true") } catch { case _ => false }
    println("privateParam = " + privateParam)
    val file = fileParams("file")
    println(s"The size of the file is ${file.size}")
  }

错误是:

java.lang.IllegalStateException: No multipart config for servlet
    at org.eclipse.jetty.server.Request.getParts(Request.java:2064) ~[jetty-server-8.1.10.v20130312.jar:8.1.10.v20130312]
    at org.scalatra.servlet.FileUploadSupport$class.getParts(FileUploadSupport.scala:133) ~[scalatra_2.10-2.2.1.jar:2.2.1]
    at org.scalatra.servlet.FileUploadSupport$class.extractMultipartParams(FileUploadSupport.scala:108) ~[scalatra_2.10-2.2.1.jar:2.2.1]
    at org.scalatra.servlet.FileUploadSupport$class.handle(FileUploadSupport.scala:79) ~[scalatra_2.10-2.2.1.jar:2.2.1]
    at com.ui.WebServlet.handle(WebServlet.scala:32) ~[classes/:na]

这是我的单元测试,第一个成功,因此它正在查找我的Web服务:

And this is my unit test, and the first one succeeds, so it is finding my webservice:

class WebServletSpecification extends MutableScalatraSpec {
  addServlet(classOf[WebServlet], "/*")

  "GET /hello" should {
    "return status 200" in {
      get("/hello/testcomputer") {
        status must_== 200
      }
    }
  }
  "POST /uploadscript" should {
    "return status 200" in {
    val scriptfile = "testfile"
    val scriptname = "basescript"
      post("/uploadscript", Map("private" -> "true"), Map("file" -> new File(scriptfile))) {
        status must_== 200
      }
    }
  }
}

我正在Eclipse中运行此程序,我不确定发生了什么.

I am running this inside of Eclipse and I am not certain what is going on.

使用HttpPostMultipartEntity可以很好地工作,因此Eclipse或scalatra规范框架的工作方式似乎是一个问题.

It works fine with using HttpPost and MultipartEntity so it seems to be a problem with Eclipse or how the scalatra specification framework works.

您知道什么地方可能出问题了吗?

Any idea what may be going wrong?

我没有单独的web.xml.

I don't have a separate web.xml.

从build.sbt中的使用情况来看,我仅使用码头8.1.10:

I am only using jetty 8.1.10, as seen from what I use in build.sbt:

"org.eclipse.jetty"%"jetty-webapp"%"8.1.10.v20130312"% 容器"

"org.eclipse.jetty" % "jetty-webapp" % "8.1.10.v20130312" % "container"

推荐答案

这是我在使用ServletContextHandler而不是WebAppContext时发现的解决方案.从这里开始: https://bugs.eclipse.org/bugs/show_bug.cgi ?id = 395000

This is the solution I found when using ServletContextHandler and not WebAppContext. From here : https://bugs.eclipse.org/bugs/show_bug.cgi?id=395000

import org.eclipse.jetty.server.Handler;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.server.handler.HandlerList;
import org.eclipse.jetty.servlet.ServletContextHandler;
import org.eclipse.jetty.servlet.ServletHolder;
import javax.servlet.MultipartConfigElement;

public class WebServer {

    protected Server server;

    public static void main(String[] args) throws Exception {
        int port = 8080;
        Server server = new Server(port);

        ServletContextHandler context = new ServletContextHandler(ServletContextHandler.SESSIONS);
        context.setContextPath("/");


        ServletHolder fileUploadServletHolder = new ServletHolder(new FileUploadServlet());
        fileUploadServletHolder.getRegistration().setMultipartConfig(new MultipartConfigElement("data/tmp"));
        context.addServlet(fileUploadServletHolder, "/fileUpload");

        server.setHandler(context);
        server.start();
        server.join();
    }
}

这篇关于没有使用scalatra的Jetty的servlet错误的multipartconfig的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆