1

com.google.apphosting.api.ApiProxy$RequestTooLargeException:对 API 调用 datastore_v3.Put() 的请求太大。

public static List<Area> readAreas(URL url) {
    List<Area> areas = new ArrayList<Area>();
    try {
        BufferedReader br = new BufferedReader(new FileReader(new File(url.toURI())));
        String row;
        while ((row = br.readLine()) != null) {
            if (row.contains(SEARCHED_ROW)) {
                //get the part after "c"
                String coord[] = (row.split("c"));
                String startCoordM = ((coord[0].trim()).split(" "))[1];
                String curvesCoord= coord[1];

                Area area = new Area();
                area.mPoint= Point.toStartPoint(Point.readPoints(startCoordM));
                area.curves = Curve.readCurves (curvesCoord);
                areas.add(area);
            }
        }
        br.close();
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (URISyntaxException e) {
        e.printStackTrace();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    return areas;
} 

此方法运行时没有任何错误,但是当我注销并登录到我的 Web 应用程序的同一页面时,此方法一次又一次地运行而没有问题,但随后抛出此异常。我正在使用带有 jsf2 和 primefaces 3.5 的 google app engine 1.8.1。此方法是从托管 bean 调用的:

public MapMB () {
    eps = EPDAO.getEPList();
    populateAdvancedModel(eps);
    drawPolilines();
}

void drawPolilines() {
    List<Area> areas = Area.readAreas(getFacesContext().getClass().getResource("/map-inksc.svg") );

    for (Area area : areas) {

        List<Curve> curves = area.getCurves();
        Point endPoint = area.getmPoint();

        Polyline polyline = new Polyline();
        polyline.setStrokeWeight(1);  
        polyline.setStrokeColor("#FF0000");  
        polyline.setStrokeOpacity(1);

        for (Curve curve : curves) {
            polyline.getPaths().add( new LatLng(endPoint.getY(),endPoint.getX()) );
            // curve start point is the end point of previous curve (endPoint.getX(),endPoint.getY() )
            double step = 0.01;
            for (double t=0;t<= 1;t=t+step) {
                double x = getCoordFromCurve(endPoint.getX(), endPoint.getX() + curve.getP1().getX(),endPoint.getX() + curve.getP2().getX(),endPoint.getX() + curve.getP3().getX(), t);
                double y = getCoordFromCurve(endPoint.getY(), endPoint.getY() + curve.getP1().getY(),endPoint.getY() + curve.getP2().getY(),endPoint.getY() + curve.getP3().getY(), t);
                polyline.getPaths().add(  new LatLng(y, x) );
            }
            endPoint = new Point (endPoint.getX() + curve.getP3().getX(), endPoint.getY() + curve.getP3().getY());
        }
        advancedModel.addOverlay(polyline);
        polyline = new Polyline();
    }
}

当我不读取任何数据(不要使用上面的 readAreas() )时,一切正常。那么从文件中读取如何与此错误相关联呢?我不明白。

如果有一些我没有放在这里的信息,请说出来。所有这些方法都运行没有错误,然后抛出这个异常

4

1 回答 1

1

查看编辑

好的。所以......以某种方式解决了问题。如何?我不确定。所以我有:

a.xhtml  < include b.xhtml 
c.xhtml  < include b.xhtml
a.xhtml and c.xhtml had the same method bFilterMethod()

JSF beans:a、b、c 所有 ViewScoped b 都有 a 和 c 作为托管属性 a.xhtml 和 c.xhtml 有 bFilterMethod(),它从数据库中获取一些数据并设置 aProperty 和 cProperty(它们是相同的)。我在谷歌应用引擎日志中看到,在抛出异常之后,getsSome() 方法像无限循环一样运行了大约 20 次。

现在所有的 bean 都是请求范围的

a.xhtml has aFilterMethod that getsSome() data
b.xhtml has bFilterMethod that getsSome() data
and a and b has c as Managed Property 

希望这对某人有所帮助,但我很伤心,我不确定确切的错误是什么,但显然是由来自数据库的请求太大引起的,无论此请求仅包含 3 行(此请求被调用太多次)

编辑 这么多年后,我意外地回到了我的话题。这一切的真正原因是 GAE 将会话保存在数据存储中,并且 jsf ViewScoped bean 没有像在普通 Java 应用程序服务器中那样从会话中删除。所以解决方案就是不要使用 ViewScoped bean

于 2013-07-23T12:32:46.200 回答