我正在尝试执行项目 https://github.com/bava/springrest-book/tree/master/Chapter4/final/quick-poll-ch4-final
我所做的只是改变是使用Lombok(暂时不在Poll类中)
@ToString
@Entity
public class Option {
@Id
@GeneratedValue
@Column(name="OPTION_ID")
@Getter
@Setter
private Long id;
@Column(name="OPTION_VALUE")
@Getter
@Setter
private String value;
}
我收到错误
{"timestamp":1448542212469,"status":415,"error":"Unsupported Media Type","exception":"org.springframework.web.HttpMediaTypeNotSupportedException","message":"Content type 'text/plain;charset=UTF-8' not supported","path":"/polls"}
发送POST请求时
{
"question": "Who will win SuperBowl this year?",
"options": [
{"value": "New England Patriots"},
{"value": "Seattle Seahawks"},
{"value": "Green Bay Packers"},
{"value": "Denver Broncos"}]
}