Manan Mehta
Manan Mehta
Remove the file schema.sql from your project
when using jpa schema.sql not required
https://github.com/habuma/spring-in-action-5-samples/issues/56#issue-537920687
``` private long saveTacoInfo(Taco taco) { taco.setCreatedAt(new Date()); PreparedStatementCreatorFactory pscf = new PreparedStatementCreatorFactory( "Insert into Taco(name, createdAt) values(?,?)", Types.VARCHAR, Types.TIMESTAMP); pscf.setReturnGeneratedKeys(Boolean.TRUE); PreparedStatementCreator psc = pscf.newPreparedStatementCreator( Arrays.asList(taco.getName(), new Timestamp(taco.getCreatedAt().getTime()))); KeyHolder keyHolder...