java – JPA休息在尝试上传blob时停止工作

前端之家收集整理的这篇文章主要介绍了java – JPA休息在尝试上传blob时停止工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

当我添加代码时,我的整个休息服务停止工作:

@PUT
@Path("upload/{id}")
@Consumes(MediaType.MULTIPART_FORM_DATA)
public void addBlob(@PathParam("id") Integer id,@FormDataParam("file") InputStream uploadedInputStream) throws IOException {
    TheTempClient entityToMerge = find(id);
    try {
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        int read = 0;
        byte[] bytes = new byte[1024];
        while ((read = uploadedInputStream.read(bytes)) != -1) {
            out.write(bytes,read);
        }
        entityToMerge.setTestBlob(out.toByteArray());
        super.edit(entityToMerge);
    }
    catch (IOException e) {
        e.printStackTrace();
    }
}

它没有真正说明为什么,我得到的只是:

Severe:   WebModule[/MavenProjectTest]StandardWrapper.Throwable
org.glassfish.jersey.server.model.ModelValidationException: Validation of the application resource model has Failed during application initialization.

还有一堆错误说“由以前的错误引起的”

我一定在这里做了一些非常错误的事,有没有专业的JPA爱好者可以在这里帮助我一点点?

编辑:我正在使用注释而不是web.xml,是否可以在没有web.xml的情况下执行此操作?

最佳答案
我不得不添加register(MultiPartFeature.class);

在ApplicationConfig.java类中,如下所示:

@javax.ws.rs.ApplicationPath("api")
public class ApplicationConfig extends ResourceConfig {

public ApplicationConfig() {
    packages("com.test.thepackage.service");
    register(MultiPartFeature.class);
}

}

现在它就像一个魅力,没有web.xml文件.

原文链接:https://www.f2er.com/java/437255.html

猜你在找的Java相关文章