Posts by Rodrigo Batista • 78 points
3 posts
-
0
votes2
answers692
viewsA: Hibernate, JPA, does not save the new data in the database
I would use a Jparepository Extendo<>. Example of the class I made: @Repository public interface PessoaFisicaRepository extends JpaRepository<PessoaFisica, Long> { } And in service I…
-
4
votes0
answers43
viewsQ: How to make a container deploy by Azure portal?
How to deploy a Docker container to Azure only using the portal? All the explanations I see are using the AZURE CLI, I would like to know if there is a way to do it without using the AZURE CLI.…
-
2
votes1
answer105
viewsQ: Microservices and Clusters
Good morning. I have a question about clusters and Microservices. What is the right way to deploy microservice, one per cluster? Or it could be more? I will exemplify: I have an app that is formed…