【问题标题】:Controller on Spring Boot 415 Unsupported Media TypeSpring Boot 415 上的控制器不受支持的媒体类型
【发布时间】:2014-11-16 18:05:51
【问题描述】:

您好,我的 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());
        }

在我的安卓应用中:

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

当我在我的 android 应用程序中调用它时,我收到了这个错误:

retrofit.RetrofitError: 415 Unsupported Media Type

你能告诉我在哪里寻找我的错吗?

感谢您的关注和时间;

Logcat:

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;
    }
}

【问题讨论】:

  • 您是否真的定义了 JSON 转换器(即 Jackson 在服务器的类路径中)?
  • 我刚刚添加了我的 build.gradle 的依赖项:compile("com.fasterxml.jackson.core:jackson-databind:2.2.3") compile("org.codehaus.jackson:jackson-mapper-asl:1.9.13") compile("org.codehaus.jackson:jackson-core-asl:1.9.13") 但我仍然遇到同样的错误。
  • 是另一种让它工作的方法吗???
  • 你为什么同时使用 Jackson 1 和 Jackson 2(我不确定这是否重要,但一个就足够了)?
  • 到目前为止,我对您提供的信息无能为力。如果你有一个可以在 Guthub 上分享的最小项目,它可能会很快查明问题。

标签: android json spring http spring-boot


【解决方案1】:

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

【讨论】:

  • 感谢您的回复。我已经尝试过了,但我遇到了同样的错误。我添加了我的 logcat,它可能会有所帮助。
猜你喜欢
  • 2020-06-26
  • 2015-06-17
  • 2017-06-21
  • 1970-01-01
  • 1970-01-01
  • 2013-01-13
  • 2013-08-08
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多