我正在尝试学习基于 Jax RS 规范的 Java REST 框架 Jersey。我正在从复数网站做一个不太好的教程。但无论如何,我已经到了使用 Google Chrome 邮递员将 url 编码的表单参数提交给我的服务的地步。
我用于资源方法的类称为 ActivityResource。每个 @GET 注释方法都有效,但 @POST 方法无效。
我提交的路径是 localhost:8080//webapi/activities/activity
无论如何,如果我在任一路径参数前插入斜杠,重新排列注释标头或应用老式的“application/x-www-form-urlencoded”参数,我总是会得到一个烂 HTTP Status 415 - Usupported Media Type 响应. 有谁知道我错过了什么。我需要一个缺少的罐子吗?
@Path("activities") 公共类 ActivityResource {
private ActivityRepository activityRepository = new ActivityRepositoryStub();
@POST
@Path("activity")
@Consumes(MediaType.APPLICATION_FORM_URLENCODED)
@Produces({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
public Activity createActivityParams(MultivaluedHashMap<String, String> formParams) {
System.out.println(formParams.getFirst("description"));
System.out.println(formParams.getFirst("duration"));
Activity activity = new Activity();
activity.setDescription(formParams.getFirst("description"));
activity.setDuration(Integer.parseInt( formParams.getFirst("duration")));
String id = String.valueOf( activityRepository.findAllActivities().size() );
activity.setId(id);
activityRepository.findAllActivities().add(activity);
return activity;
}
.....My Get methods down here which actually output functioning results
}
这是我的 POM 文件
http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>simple-service-webapp</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>simple-service-webapp</name>
<build>
<finalName>simple-service-webapp</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<inherited>true</inherited>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<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-servlet-core</artifactId>
<!-- use the following artifactId if you don't need servlet 2.x compatibility -->
<!-- artifactId>jersey-container-servlet</artifactId -->
</dependency>
<dependency>
<groupId>org.glassfish.jersey.media</groupId>
<artifactId>jersey-media-moxy</artifactId>
<version>2.1</version>
</dependency>
<!--
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
<version>2.5.1</version>
<scope>provided</scope>
</dependency>
-->
</dependencies>
<properties>
<jersey.version>2.5.1</jersey.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>