Posts by Felipe Loureiro • 55 points
10 posts
-
0
votes0
answers16
viewsQ: Error with the orphanRemoval
I’m trying to use orphanRemoval for the TCC project and I’m having trouble, I think it’s dependency. @ManyToMany(cascade = CascadeType.ALL, orphanRemoval = true) private List<ReadingTarget>…
-
0
votes0
answers215
viewsQ: Nestjs dependency injection Unable to resolve dependencies error
I made a simple API using Nestjs to learn. Now I’m making a more complex modularizing, but I had this dependency error: Error: Nest can't resolve dependencies of the UserRepository (?). Please make…
-
1
votes1
answer3128
viewsQ: Error 'Noclassdeffounderror: org/springframework/boot/context/properties/Configurationpropertiesbean'
I am trying to make an application with several packages and using spring cloud with Eureka in java, but this exception. org.springframework.beans.factory.BeanCreationException: Error creating bean…
-
0
votes1
answer370
viewsQ: When to close a postgres pool at Nodejs?
I’m with a Nodejs application that basically has a food search engine. However always in the second research occurs the following exception and I do not know in what part of the code exactly I…
-
0
votes1
answer72
viewsQ: Doubt when using a Query answer in Nodejs
Well, first, I have two files: index.js that handles the requests and another that selects in the database, but I don’t know how to return it to the client. app.get('/pesqAlimentos', (req, res)…
-
0
votes1
answer164
viewsA: Problems in making android build in Cordova
Problem solved, I had to downgrade the JDK and SDK to work. However, another problem persists: PS C: Users felsilva Desktop backup Cordova gps> Cordova build android Cannot read Property '1' of…
-
-1
votes1
answer164
viewsQ: Problems in making android build in Cordova
Failed to restore plugin "cordova-plugin-file-transfer" from config.xml. You might need to try adding it again. Error: Version of installed plugin: "[email protected]" does not satisfy…
-
-2
votes1
answer32
viewsQ: java.lang.reflect.Invocationtargetexception in Javafx
I’m having a problem when loading a file with the Fxmlloader method, as in the image below. I don’t have this problem when I do a screen without using an FXML file, someone knows why of the error?…
-
1
votes1
answer40
viewsA: How do I define an element of a Struct in C?
I managed to solve my problem, in case I used a library command strcpy(dados[1].nome, "José");
-
1
votes1
answer40
viewsQ: How do I define an element of a Struct in C?
I intend to make a program that uses structs to store data, but that there is already some data inserted in it, I will give a similar example: struct registro { char nome[30], telefone[11]; int…