gpt4 book ai didi

java - 使用 MULTIPART_FORM_DATA 时 Jersey api 返回 415 不支持的媒体类型

转载 作者:行者123 更新时间:2023-12-02 12:44:54 26 4
gpt4 key购买 nike

在服务器启动中注册多部分功能:

public static HttpServer startServer() {

final ResourceConfig rc = new ResourceConfig().packages("com.server.rest");

rc.register(MultiPartFeature.class);

return GrizzlyHttpServerFactory.createHttpServer(URI.create(BASE_URI), rc);
}

简单测试 POST api:

@POST
@Path("/user-picture")
@Consumes(MediaType.MULTIPART_FORM_DATA)
@Produces(MediaType.TEXT_PLAIN)
public String uploadFile(FormDataMultiPart data) {


return "OK";

}

服务器响应:

415 unsupported media type

为了测试服务器,我使用 Mozilla firefox Poster 插件。其他没有多部分工作的功能都可以。

enter image description here

我使用不同的内容类型进行了测试,例如具有相同结果的图像。

Jersey 版本为 2.17

pom.xml 多部分依赖:

 <dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-multipart</artifactId>
</dependency>

完整的pom.xml:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>

<groupId>com.example.rest</groupId>
<artifactId>jersey-service</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>jersey-service</name>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.glassfish.jersey</groupId>
<artifactId>jersey-bom</artifactId>
<version>${jersey.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>

</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-grizzly2-http</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-multipart</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.9</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<inherited>true</inherited>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>com.server.rest.Main</mainClass>
</configuration>
</plugin>
</plugins>
</build>

<properties>
<jersey.version>2.17</jersey.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>

最佳答案

使用知道如何专门以多部分形式发送文件的不同客户端。当涉及到多部分时,您通常不想手动创建请求(或设置 Content-Type header ),因为它比普通请求稍微复杂一些。例如,这是多部分请求的样子

Content-Type: multipart/form-data; boundary=AaB03x

--AaB03x
Content-Disposition: form-data; name="submit-name"

Larry
--AaB03x
Content-Disposition: form-data; name="files"; filename="file1.txt"
Content-Type: text/plain

... contents of file1.txt ...
--AaB03x--

See more a W3c

您可以使用的一个客户端是 Postman 。或者,如果您要自动化测试(在集成测试中,您可以使用 Jersey client support for multipart

关于java - 使用 MULTIPART_FORM_DATA 时 Jersey api 返回 415 不支持的媒体类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44807767/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com