リクエストパラメーターでメールを渡そうとしています..
私のコントローラークラスでそれを読んでいる間、例外を下回っています..
[ Catch Exception : Error Message: Unexpected end-of-input: was expecting closing quote for a string value
at [Source: java.io.StringReader@200a200a; line: 1, column: 195] ]
http://localhost:8080/appln/fetch/
ipdata={"date":"2013-10-05","emailId":"my.email.com@gmail.com"}
「myemailcom@gmailcom」のemailIdを持っている場合..うまく機能します...
私のコントローラーコードは一種のように見えます..
ObjectMapper mapper = new ObjectMapper();
mapper.readValue(ipdataString,InputRequestBean.class);
--
取得しているのは...
{"date":"2013-10-05","emailId":"my
そして私の豆は
public class InputRequestBean {
private String date;
private String emailId;
/**
* @return the date
*/
public String getDate() {
return date;
}
/**
* @param date the date to set
*/
public void setDate(String date) {
this.date = date;
}
/**
* @return the emailId
*/
public String getEmailId() {
return emailId;
}
/**
* @param emailId the emailId to set
*/
public void setEmailId(String emailId) {
this.emailId = emailId;
}
}