en el día de hoy estaba intentando resolver un inconveniente que se me presenta al momento de actualizar unos datos, los cuales manejo una db H2 en el framework de spring.
public void updateTech(Tech tech, UUID uuid) {
String sql = "UPDATE TECH SET idTech = :idTech, idService = :idService, horaInicio = :horaInicio, horaFinal = :horaFinal WHERE id = :id";
Map<String, Object> params = Map.of(
"id", uuid,
"idTech", tech.getIdTech(),
"idService", tech.getIdService(),
"horaInicio", tech.getHoraInicial(),
"horaFinal", tech.getHoraFinal()
);
namedParameterJdbcTemplate.update(sql,params);
}
De tal manera les solicito a ustedes comunidad que me ayuden a solucionar este inconveniente.
El error es el siguiente.
java.lang.NullPointerException: null