我是使用Spring Boot的JPA/Hibernate的新手,现在已经遇到了6个小时以上的错误,这使我发疯。

基本上,一切都从我的 Controller 开始

@RestController
@RequestMapping("patientApi")
public class RestPatientController {

    public static final Logger LOGGER = LoggerFactory.getLogger(RestPatientController.class);

    @Autowired
    private PatientService patientService;

    [...]

    @RequestMapping(value = "/patient/prises_en_charge/{id}", method = RequestMethod.GET)
    public ResponseEntity<List<PriseEnCharge>> listAllPrisesEnChargeByPatient(@PathVariable("id") long id) {

        Patient currentPatient = patientService.findById(id);
        LOGGER.info("Récupération de toutes les prises en charges d'un patient avec id {}", currentPatient);
        List<PriseEnCharge> prisesEnCharge = patientService.findAllPrisesEnChargeByPatient(currentPatient);
        LOGGER.info("Liste de prises en charge {} ({} elements)", prisesEnCharge, prisesEnCharge.size());
        if (prisesEnCharge.isEmpty()) {
            LOGGER.debug("La liste des prises en charge est vide");
            return new ResponseEntity(HttpStatus.NO_CONTENT);
            // You many decide to return HttpStatus.NOT_FOUND

        }
        return new ResponseEntity<List<PriseEnCharge>>(prisesEnCharge, HttpStatus.OK);
    }

}

在其中捕获要获取更多数据的元素的ID。然后,我在服务范围内致电DAO
@Service("patientService")
@Transactional
public class PatientServiceImpl implements PatientService {

    @Autowired
    private PriseEnChargeDao priseEnChargeDao;

    [...]

    @Override
    public List<PriseEnCharge> findAllPrisesEnChargeByPatient(Patient patient) {
        return priseEnChargeDao.findPriseEnChargeByPatient(patient);
    }

}

道正
@Repository
public interface PriseEnChargeDao extends JpaRepository<PriseEnCharge, Long> {

    @Query("from PriseEnCharge where id_patient = :patient")
    public List<PriseEnCharge> findPriseEnChargeByPatient(@Param("patient") Patient patient);

}

无论我尝试了什么,它总是抛出异常“java.io.StreamCorruptedException:无效的流头:32303138”。我真不知道了,我对此感到绝望。

最佳答案

我要在这里猜测。如果将32303138解释为十六进制的32位字并将其“解码”为ASCII字符,则会得到“2018”。在我看来,它就像某种日期字符串的前4个字符。

我的猜测是,有些东西正在尝试对字符串进行反序列化,就好像它是对象流一样。这意味着数据库模式与 hibernate 映射之间不匹配。

10-01 08:36