0
buYay dinlendirici tarih biçimi
@Transactional
@RequestMapping(value="/A", method = RequestMethod.POST)
public ABean aInsert(final java.sql.Date when, final long company) {
A bean = new A();
bean.setWhen(when);
bean.setCompany(entityManager.find(Company.class, company));
entityManager.persist(bean);
return new ABean(bean.getId(), bean.getVersion(), bean.getWhen(), bean.getCompany().getId());
}
gibi jdk8 bir dinlenme kontrol formu sonrası verilerin
when=1459987200000&company=1
çağrılır ancak adı olamaz ve 400 - bad request (description The request sent by the client was syntactically incorrect.)
döndürür.
Sorum şu:
java.sql.date
varsayılan giriş dizesi biçimi nedir?