android - Spring Boot 上的 Controller 415 不支持的媒体类型

标签 android json spring http spring-boot

您好,我在 Controller 的 Spring Boot 上进行了以下配置:

@RequestMapping(value = "/test/setgamesets", method = RequestMethod.POST,consumes="application/json")
public @ResponseBody Collection<GameSet> setGameSets(@RequestBody ArrayList<GameSet> gmsets) {
            for(GameSet gs : gmsets){
                System.out.println(""+gs.getId());
                gamesets.save(gs);          
            }
            return Lists.newArrayList(gamesets.findAll());
        }

在我的 android 应用程序中:

@POST("/test/setgamesets")
public Collection<GameSet> setGameSets(@Body ArrayList<GameSet> gmsets);

当我在我的 android 应用程序中调用它时,出现此错误:

retrofit.RetrofitError: 415 Unsupported Media Type

你能给我提示在哪里寻找我的错误吗?

感谢您的关注和时间;

日志:

11-17 08:43:12.283    8287-8734/com.testing.test D/Retrofit﹕ ---> HTTP POST https://192.168.1.65:8443/test/setgamesets
11-17 08:43:12.283    8287-8734/com.testing.test D/Retrofit﹕ Authorization: Bearer 1d5deb22-a470-4443-984f-3f877b05e372
11-17 08:43:12.283    8287-8734/com.testing.test D/Retrofit﹕ Content-Type: application/json
11-17 08:43:12.283    8287-8734/com.testing.test D/Retrofit﹕ Content-Length: 848
11-17 08:43:12.283    8287-8734/com.testing.test D/Retrofit﹕ [{"explanation":"I dont know why this is wrong.","title4":"MovieD","question":"Choose one of the following, which is wrong.","title3":"MovieC","title2":"MovieB","title1":"MovieA","id":1,"rate":1.0,"rates":4,"wrong":1},{"explanation":"I dont know why this is wrong.","title4":"MovieD","question":"What is wrong with the follow movies.","title3":"MovieC","title2":"MovieB","title1":"MovieA","id":2,"rate":1.0,"rates":5,"wrong":2},{"explanation":"I dont know why this is wrong.","title4":"MovieD","question":"What is wrong with the follow movies.","title3":"MovieC","title2":"MovieB","title1":"MovieA","id":3,"rate":1.0,"rates":5,"wrong":3},{"explanation":"I dont know why this is wrong.","title4":"MovieD","question":"What is wrong with the follow movies.","title3":"MovieC","title2":"MovieB","title1":"MovieA","id":4,"rate":0.0,"rates":0,"wrong":4}]
11-17 08:43:12.283    8287-8734/com.testing.test D/Retrofit﹕ ---> END HTTP (848-byte body)
11-17 08:43:12.463    8287-8734/com.testing.test D/Retrofit﹕ <--- HTTP 415 https://192.168.1.65:8443/test/setgamesets (177ms)
11-17 08:43:12.463    8287-8734/com.testing.test D/Retrofit﹕ Server: Apache-Coyote/1.1
11-17 08:43:12.463    8287-8734/com.testing.test D/Retrofit﹕ X-Content-Type-Options: nosniff
11-17 08:43:12.463    8287-8734/com.testing.test D/Retrofit﹕ X-XSS-Protection: 1; mode=block
11-17 08:43:12.463    8287-8734/com.testing.test D/Retrofit﹕ Cache-Control: no-cache, no-store, max-age=0, must-revalidate
11-17 08:43:12.463    8287-8734/com.testing.test D/Retrofit﹕ Pragma: no-cache
11-17 08:43:12.463    8287-8734/com.testing.test D/Retrofit﹕ Expires: 0
11-17 08:43:12.463    8287-8734/com.testing.test D/Retrofit﹕ Strict-Transport-Security: max-age=31536000 ; includeSubDomains
11-17 08:43:12.463    8287-8734/com.testing.test D/Retrofit﹕ X-Frame-Options: DENY
11-17 08:43:12.463    8287-8734/com.testing.test D/Retrofit﹕ Set-Cookie: JSESSIONID=C97BD6EB007A558F69B0DA7A19615917; Path=/; Secure; HttpOnly
11-17 08:43:12.463    8287-8734/com.testing.test D/Retrofit﹕ X-Application-Context: application
11-17 08:43:12.463    8287-8734/com.testing.test D/Retrofit﹕ Content-Type: application/schema+json
11-17 08:43:12.463    8287-8734/com.testing.test D/Retrofit﹕ Transfer-Encoding: chunked
11-17 08:43:12.463    8287-8734/com.testing.test D/Retrofit﹕ Date: Mon, 17 Nov 2014 06:43:12 GMT
11-17 08:43:12.463    8287-8734/com.testing.test D/Retrofit﹕ {
    "timestamp" : 1416206592255,
    "error" : "Unsupported Media Type",
    "status" : 415,
    "message" : ""
    }
11-17 08:43:12.463    8287-8734/com.testing.test D/Retrofit﹕ <--- END HTTP (112-byte body)
11-17 08:43:12.463    8287-8734/com.testing.test E/com.testing.test.CallableTask﹕ Error invoking callable in AsyncTask callable: com.testing.test.Game_Panel_Score_Activity$1@41f20a18
    retrofit.RetrofitError: 415 Unsupported Media Type

这是我的对象:

@Entity
public class GameSet {

    @Id
    @GeneratedValue(strategy = GenerationType.AUTO)
    private long id;
    private String question;
    private String title1;
    private String title2;
    private String title3;
    private String title4;
    private int wrong;
    private String explanation;
    private int rates;
    private double rate;

    public GameSet() {

    }

    public GameSet(String question,String title1, String title2, String title3, String title4,String explain, int wrong) {
        super();
        this.question = question;
        this.title1 = title1;
        this.title2 = title2;
        this.title3 = title3;
        this.title4 = title4;
        this.explanation = explain;
        this.wrong = wrong;
        this.rate = 0;
        this.rates = 0;
    }

    // Getters
    public String getQuestion() {
        return question;
    }

    public String getTitle1() {
        return title1;
    }

    public String getTitle2() {
        return title2;
    }

    public String getTitle3() {
        return title3;
    }

    public String getTitle4() {
        return title4;
    }

    public String getExplanation() {
        return explanation;
    }

    public int getWrong() {
        return wrong;
    }

    public int getRates() {
        return rates;
    }

    public double getRate() {
        return rate;
    }

    // Setters

    public String setQuestion(String question) {
        return this.question = question;
    }

    public void setTitle1(String title1) {
        this.title1 = title1;
    }

    public void setTitle2(String title2) {
        this.title1 = title2;
    }

    public void setTitle3(String title3) {
        this.title1 = title3;
    }

    public void setTitle4(String title4) {
        this.title1 = title4;
    }

    public void setExplanation(String explain) {
        this.explanation = explain;
    }

    public void setWrong(int wrong) {
        this.wrong = wrong;
    }

    public void setRate(double rate) {
        this.rate = rate;
    }

    public void setRates(int rate) {
        this.rate = rate;
    }

    public long getId() {
        return id;
    }

    public void setId(long id) {
        this.id = id;
    }
}

最佳答案

您的客户端应用程序应包含 HTTP header Content-Type:application/json 以使其正常工作。但我不是 android 开发人员,所以不知道该怎么做。

关于android - Spring Boot 上的 Controller 415 不支持的媒体类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26960281/

相关文章:

java - Toast 数组值不起作用

json - 条件 Karate API 测试工具中的模糊匹配

json - 是否可以使用 Stripe API 查询日期时间范围?

java - Spring Boot 中的标准 API

java - 对具有抽象类对象的类进行 Junit 测试

java - 安卓单元测试 : How to mock a listener that is sent as argument to an asynchronous method?

android - 如何通过 ContentProvider URI 获取从 Gallery 发送到我的应用程序的视频的实际路径?

Spring 4 Autowiring 到过滤器

android - 如何在android中获取应用程序的名称?

android - 使用 ormlite android 存储对象字段