Posts by Luiz Henrique Mello • 36 points
3 posts
-
0
votes2
answers212
viewsA: Failure to Try to Inject Spring Boot Interfaces
Have more classes in your application? Another implementation for the vehicle service? I created a project with the same classes that you posted here and it worked perfectly.
-
0
votes1
answer75
viewsA: How to do this query search?
But is the application going up? To @NamedQuery you’re still wrong. @NamedQuery(name = "TipoProduto.consultarTodos", query = "SELECT tpprod_nome FROM tipoproduto ORDER BY tpprod_nome") Should be…
-
2
votes1
answer76
viewsA: Sort on an object [java]
An alternative is your class Wonders implement the interface Comparable. She will force you to implement the method compareTo(T o). The method compareTo(T o) is called as follows: int result =…