3

我正在尝试手动返回带有自定义错误消息的 HTTP 4xx 或 5xx。它适用于 GET,但为 PUT 和 POST 返回空内容。提前感谢任何可以建议如何让 PUT 和 POST 工作的人!

这些是我对 Web 服务的调用:
GET /webapp/orders/A.json- 返回 HTTP 500 和错误消息作为内容
PUT /webapp/orders/A.json- 返回 HTTP 500 和 content-length=0

getModel()在这两种情况下都被调用,消息只是不会返回到 Chrome 以进行 PUT。

这是产生错误的示例代码:

订单控制器

package com.test.controller;

import org.apache.struts2.rest.DefaultHttpHeaders;
import org.apache.struts2.rest.HttpHeaders;
import org.apache.struts2.convention.annotation.Namespace;
import com.opensymphony.xwork2.ModelDriven;

@Namespace("/rest")
public class OrdersController implements ModelDriven<Object> {

    // GET /orders/A
    public HttpHeaders show() {
        return new DefaultHttpHeaders().withStatus(500);
    }

    // PUT /orders/A
    public HttpHeaders update() {
        return new DefaultHttpHeaders().withStatus(500);
    }

    public void setId(String id) {
        // Nothing
    }

    public Object getModel() {
        return new String("{ \"message\": \"An error occurred.\"}");
    }

} 

支柱

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
    "http://struts.apache.org/dtds/struts-2.3.dtd">

<struts>
    <constant name="struts.convention.action.suffix" value="Controller"/>
    <constant name="struts.convention.action.mapAllMatches" value="true"/>
    <constant name="struts.convention.default.parent.package" value="rest-default"/>
    <constant name="struts.convention.package.locators" value="controller"/>    
</struts>

网络

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="starter" 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>Orders</display-name>

    <filter>
        <filter-name>action2</filter-name>
        <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>action2</filter-name>
        <url-pattern>/rest/*</url-pattern>
    </filter-mapping>

    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
    </welcome-file-list>

</web-app>

AngularJS 测试工具

var orderApp = angular.module('orderApp', []);

orderApp.run(function($http) {
    $http.get("rest/orders/A.json");
    $http.put("rest/orders/A.json", {"orderId":"A"} );
});

环境:Struts2 (2.3.16.3)、Rest-Plugin、Convention、Java7、Tomcat7、Maven

4

1 回答 1

1

添加<constant name="struts.rest.content.restrictToGET" value="false"/>到 struts.xml 解决了这个问题。感谢@ontk 对另一个问题回答。感谢所有试图帮助我的人。

于 2014-10-20T13:13:45.647 回答