Posts by Júlio Falbo • 335 points
13 posts
-
1
votes1
answer8231
viewsA: Connect Springboot with Postgresql
This mistake has nothing to do with Postgre. Reading the error you can see the following message: "The Tomcat Connector configured to Listen on port 8080 failed to start. The port may already be in…
-
0
votes2
answers952
viewsA: React Native - Navigation + Image
You can also solve the problem using Template String. render() { const {params} = this.props.navigation.state; var image = require(`${params.image}`); return ( <ScrollView…
react-nativeanswered Júlio Falbo 335 -
1
votes2
answers284
viewsA: Error trying to install Flux Router
Actually it is not a mistake of lib. The new version of the router-Flux slightly modified the structure to mount its route system. The good news is it’s very quiet to solve this problem. Just…
-
2
votes1
answer209
viewsA: React-Enable error after installing lib React-Native-router-Flux
This is not a problem of lib router-Flux, it is a newer version error in lib Babel-preset-React-Native. To resolve the error, simply follow the procedures I reported in the link below: Error while…
-
1
votes1
answer1044
viewsA: Error while trying to run app in android studio emulator
This problem can be solved in 2 ways. The first: Create the folder Assets in the directory android/app/src/main/. Open your terminal, point to the project root folder and run the following command:…
react-nativeanswered Júlio Falbo 335 -
2
votes3
answers1569
viewsA: Command suggestions in Vscode
There is a plugin that makes your Vscode use the same shortcut keys as Eclipse, can be a solution. The plugin name is: Eclipse Keymap.
-
1
votes1
answer681
viewsA: Command `run-android` unrecognized - After installing navigation
Good afternoon. Often when we run the installation of a new dependency, we must then execute the command npm install for the entire project to be updated.
-
0
votes2
answers68
viewsA: Doubt of navigation
Post photo of your code so that the understanding of the problem is clear. About navigation with Stacknavigator, I leave below an example on my github where I use this module objectively. Link:…
-
4
votes1
answer3123
viewsA: App in React On does not update
To solve the problem of the red screen when we try to re-load our application we must do the following. We must raise the Node service in a separate port through the command "react-native start…
react-nativeanswered Júlio Falbo 335 -
1
votes1
answer1677
viewsA: error: cannot find Symbol - Maven install with class Folder
Try changing the Maven plugin version to 3.1 <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId>…
-
2
votes4
answers1376
viewsA: Application with Tomcat and Spring Boot
Probably in your file pom.xml you are with the following dependency: <dependency> <groupId>org.springframework.boot</groupId>…
-
1
votes3
answers2409
viewsA: What is the best way to send my Spring Boot project to the server?
There are several ways to deploy a Spring Boot project, the easiest way is by using the billow generated from a mvn clean install. Look at this video. Another alternative is to convert the JAR into…
-
0
votes1
answer721
viewsA: Creating Thread Dynamically with Spring-boot
Enter the annotation @EnableAsync in his Application.java and give a extends in class AsyncConfigurerSupport. With this it will be possible to create a ThreadPoolTaskExecutor, following example…