Posts by Lucas • 37 points
4 posts
-
-1
votes3
answers55
viewsA: Unsatisfied dependency Expressed through field 'cartRepository'
Hello, first when you have dependency injection errors always check your Bs if they are annotated correctly and post complete error log. I would say that your problem is the absence of @Repository…
-
-1
votes3
answers35
viewsA: Doubt Spring MVC Controller
This is very relative to how you want to model, complementing Daniel’s answer above, the domain of the application should govern the nomenclatures if you want to address questions and answers that…
spring-mvcanswered Lucas 37 -
0
votes1
answer49
viewsA: Difficulty with Asymchronism - Javascript/Reactjs/Google Maps/Distance Matrix API
Hello, welcome to the world of Javascript what you want to achieve are asynchronous functions, I recommend reading the documentation of Promisses to better understand what is happening but a…
-
1
votes1
answer170
viewsA: What is the best way to edit an entity with Spring?
Jpa Repository already updates dynamically if the id of the entity you are sending exists, a trivial and well used form in the market is validation if the record already exists in the database to…