Skip to content
Advertisement

Duplicates in Output Java Spring Boot JPA

I’m working on an application with following Entities and code:

JavaScript

The RestController for MotionPicture:

JavaScript

My DB

Table: clip columns: id(1-100 unique), date, size

Table: motion_picture columns: id(1-100 unique), date, size, duration

association table: motion_picture_clips columns: motion_picture_id (1-100 random), clips_id (1-100 unique)

When I run the programm and make a the getRequest in Postman (getById and getAll) –> I’ll get duplicated values back

JSON from Postman: (localhost/DB/motionpicture/2)

JavaScript

How can I change the code or the DB to get only one clip with id 73 back?

I would be very grateful for your help:)

Kind regards!

Advertisement

Answer

Try to use

JavaScript

instead of :

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement