GAE java.lang.IllegalStateException: Must call one of set*BlobStorage() first

前端 未结 5 555
情歌与酒
情歌与酒 2021-01-14 18:41

I am trying to upload a file in GAE using the Blobstore API. I am getting the following exception when running the GAE server locally (dev mode):

WARNING: /_         


        
5条回答
  •  时光取名叫无心
    2021-01-14 19:12

    When call your page that generates html (using servlet, jsp, etc.) and calls blobstoreService.createUploadUrl("/upload"); you can't re-use this page multiple times.

    Reload this page in a browser every time you want to upload the file.

提交回复
热议问题