Posts by Victor • 11 points
3 posts
-
-1
votes2
answers3090
viewsA: Working with application.properties file
You can also use another setting in this line of code. For example: spring.jpa.hibernate.ddl-auto=update This way the data is stored and you only update tables and fields that suffer some change.…
-
0
votes1
answer199
viewsQ: Error Creating bean with name 'transactionController'
I’m starting to learn Spring and I’m getting this error, I’ve done several searches on the internet but so far I don’t understand what is causing the problem:…
-
0
votes1
answer153
viewsQ: Store data from an array in a variable
I have a CSV file with the information as below: nome;cpf;ano;faculdade; Pedro Sampaio;45896588963;2010;fmu; Yuri Martins;45885485896;2012;uninove; Pablo Vittar;32585296363;2020;unip; I read this…