Posts by Adriano • 89 points
7 posts
-
0
votes0
answers43
viewsQ: Application server or Java program that determines sent TLS protocol?
I have a Java program that uses JDK 7, it is deployed on an application server (WEBLOGIC 10.3). By default, when making requests for data in the JSON format provided by a website, the program is…
-
2
votes0
answers30
viewsQ: JAX-RS Controllers or Resources compared to Spring MVC
I came from Spring and I’m having a hard time understanding how JAX-RS works in a Java EE application. I have an application running on a Wildfly application server. I created a class to use JAX-RS…
-
2
votes1
answer61
viewsQ: Can application with separate frontend be considered monolithic?
I researched a lot but I could not solve this doubt I had when studying on monolithic applications, when backend and front are isolated. I have an X application that the frontend and backend are…
-
2
votes1
answer75
viewsQ: Who implements the Spring Repository interfaces?
We have the interface JpaRepository which we can use from your import with: import org.springframework.data.jpa.repository.JpaRepository; From it we have the standard methods to use, such as the…
-
1
votes1
answer170
viewsQ: What is the best way to edit an entity with Spring?
In my Controller I have the following mapping to display a person’s registration edit form: @GetMapping("/mostraEmpresaEdicao/{idpessoa}") public ModelAndView…
-
-1
votes1
answer43
viewsQ: Are the Spring Data and Spring Data JPA modules frameworks?
I believe that every beginner has difficulties understanding the concept of a framework. I’m starting to study the Spring framework, within it there are several projects or modules, and within these…
-
1
votes1
answer51
viewsQ: Why can’t I give getTransaction(). Begin() were from a Main?
I’m playing with Hibernate and I came up with a very amateur question. Before I was creating a DAO, and in it I received an Entitymanager from my test class, by the constructor: public class…