通过Restful Webservice写入JSONobject

时间:2017-05-14 13:37:35

标签: java web-services rest jersey

我正在学习如何使用Restful Webservice,我真的不知道我的方法是好还是完全错,所以请耐心等待

我有一个项目结构,如下所示:

enter image description here

我想通过调用正确的URL,在Datum.Json

中相应地保存字符串

这是我的WebService的Java类:

package Rest;

@Path("/calendar")
public class CalendarTest {
    public List<Date> dates;
    @GET
    @Path("/dates/get/")
    @Produces(MediaType.APPLICATION_XML)
    public List<Date> getUsers(){
       return dates;
    }
    @PUT
    @Path("/dates/put/{param1}+{param2}")
    @Produces(MediaType.APPLICATION_JSON)
    @Consumes(MediaType.APPLICATION_JSON)
    public void updateDate(@PathParam("param1") String city, @PathParam("param2") String date) throws IOException {    
        JSONObject obj = new JSONObject();
        obj.put("City", city);
        obj.put("Date", date);
        try (FileWriter file = new FileWriter("/RestTest/Datum.json")) {
            file.write(obj.toJSONString());
            System.out.println("Successfully Copied JSON Object to File...");
            System.out.println("\nJSON Object: " + obj);
        }

    }   
}

我测试了localhost,它工作正常(我可以用我的localhost打开form.html) 我的web.xml文件:

<web-app id="WebApp_ID" version="2.4"
    xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>Restful Web Application</display-name>

    <servlet>
        <servlet-name>jersey-serlvet</servlet-name>
        <servlet-class>
                    org.glassfish.jersey.servlet.ServletContainer
                </servlet-class>
        <init-param>
             <param-name>jersey.config.server.provider.packages</param-name>
             <param-value>Rest</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>jersey-serlvet</servlet-name>
        <url-pattern>/rest/*</url-pattern>
    </servlet-mapping>
    <security-constraint>

</security-constraint>
</web-app>

但是当我尝试使用网址http://localhost:8080/RestTest/rest/calendar/dates/put/Berlin+20-12-2019

它说不允许这种方法。

任何人都可以向我解释原因吗?

1 个答案:

答案 0 :(得分:3)

这是因为当您在浏览器中输入URL时,默认情况下会发送HTTP GET请求,因此您会抛出错误,因为您没有该URL的GET请求处理程序,您只有PUT请求的处理程序。

您无法更改浏览器的默认请求类型。你要做的就是在你的前端/ javascript中使用像jQuery这样的东西自己发送请求。

How to send a PUT/DELETE request in jQuery?

  

您可以使用ajax方法:

$.ajax({
    url: '/rest/calendar/dates/put/Berlin+20-12-2019',
    type: 'PUT',
    success: function(result) {
        // Do something with the result
    }
});