我正在尝试学习Jersey,这是基于Jax RS规范的Java REST框架。我正在从多元化网站上做一个教程,效果不是很好。但是无论如何,我已经到了要使用Google Chromes邮递员向我的服务提交url编码的表单参数的地步。

我用于资源方法的类称为ActivityResource。每个@GET带注释的方法都可以,但@POST方法不起作用。

我提交的路径是localhost:8080 // webapi / activities / activity

不管怎样,如果我在任何一个路径参数前插入斜杠,重新排列注释标题或应用老式的“ application / x-www-form-urlencoded”参数,我总是会得到一个烂HTTP状态415-Usupported Media Type response 。有谁知道我想念的东西吗?我需要一个缺少的罐子吗?

@Path(“活动”)
公共类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_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>

最佳答案

好的,我确定给出有关复数视力的教程的人一定会解决这个问题,但是通过进行一些搜索,所有java搜索(MKyong)的无处不在的结果为我提供了一个不错的解决方法,建议使用@FormParam批注而不是多值哈希图。哈利路亚

createActivityParams(@FormParam(“ description”)字符串说明,@FormParam(“ duration”)字符串持续时间)

10-07 19:01