dDevTech / tapas-top-backend

App backend in Spring for Tapas Top
1 stars 0 forks source link

Buscar tapas por ciudad y tipo 21/04/2023 #65

Closed JLDEMIGUEL closed 1 year ago

JLDEMIGUEL commented 1 year ago

Buscar lista de tapas order by rating, que pertenezcan una ciudad y un tipo.

La URL debe ser:

http://localhost:8080/api/tapa/city/Madrid/type/Española

Para ello, crear método en TapaRepository que sea:

List findAllByEstablishmentAddressCityLikeAndTypeLikeOrderByRatingsDesc(String city, String type);

Desde el service, añadir a la ciudad y type introducida por el usuario % al principio y final, Ej:

tapaRepository.findAllByEstablishmentAddressCityLikeAndTypeLikeOrderByRatingsDesc("%Madrid%", "%Española%");

JLDEMIGUEL commented 1 year ago

En principio no necesaria