Posts by Mateus Ramos • 16 points
3 posts
-
0
votes3
answers55
viewsA: Unsatisfied dependency Expressed through field 'cartRepository'
I believe some JPA configuration is missing. Try putting @EnableJpaRepositories in its main class or configuration bean. You may still need to indicate the package, e.g..:…
-
0
votes1
answer29
viewsA: There is [Fromuri] equivalent in Java Spring MVC
You don’t need anything equivalent, Spring does it himself. Your object needs to have a public constructor with the parameters or an empty public constructor and setters; @RestController public…
-
-1
votes1
answer30
viewsA: Filter list by keyword array
You can "concatenate" several "contains". Example: $('.texto:contains("config"):contains("empresa")') You can make a loop that adds the contains, I made one just for example, you can improve. var…