Posts by Matheus Felix • 49 points
7 posts
-
0
votes1
answer30
viewsQ: Using the JPA Repository example
I need to do a search in the bank where I have an object that is filled with everything except the id and check if it has any object that gives a "Match" with it and return it! I thought to make a…
-
1
votes1
answer59
viewsQ: How to add list to a Javascript object
I’ve been doing several tests for some time to be able to add a list to an object. I tried several ways and left the code in this format so that it is easier to understand the problem! The code…
javascriptasked Matheus Felix 49 -
1
votes1
answer40
viewsQ: How to wait for my functions to run for it to increment Java Script
I’m making a Java Script code where I need everything inside the for to be executed and then increment the for including a setTimeout. In the current code it executes everything without waiting for…
-
1
votes0
answers49
viewsQ: Using or not using semicolons in Javascript
I have been a programmer for a short time and have now started using many frameworks and Javascript libraries. As I have greater knowledge in Java bring some language habits like using the ;, I am…
-
0
votes1
answer437
viewsQ: Log Implementation in spring boot
I implemented the LOG in my Spring Boot application but it generates entire files of several days would you like to partition per day as ? To make the configuration I am using in my Properties the…
-
0
votes1
answer134
viewsA: how to erase Ionic completely from the machine
First try to clear the cache with the command: npm cache clean -f npm install npm -g Then you can try to uninstall again with the command : npm uninstall cordova ionic If you cannot do the removal…
-
-1
votes1
answer70
viewsQ: How to remove a Where from @Query in Spring Jparepository
I am using Spring BOOT with Starter JPA and java 8 and I have this query in my Repository : @Query("select p from Product p where p.name like %:name% and p.costValue = :costValue and p.saleValue=…