Most voted "pojo" questions
They are Java objects that follow a simplified design as opposed to Ejbs
Learn more…8 questions
Sort by count of
-
30
votes1
answer10018
viewsWhat is the difference between Javabean and POJO?
I’m new to Java, and I have that question. I searched several places on the internet and asked several friends JAVA programmers but none could explain to me clearly what the difference between the…
-
9
votes2
answers885
viewsDoubts about DAO, MVC, Multiple Tables and POJO
If anyone can help me, I have a question q has been consuming me a lot in recent days and is psychologically locking my studies (hehehehhe) MVC and DAO with multiple tables. I’m going to put here a…
-
4
votes2
answers93
viewsWhat are pre-specified classes?
Reading the wikipedia publication about POJO (Plain Old Java Objects), I came across the term pre-specified classes. I understood very superficially that perhaps these are the classes of…
-
3
votes2
answers236
viewsHow to find a pattern to maintain the same data modeling between a JSON, POJO, and JPA object?
To facilitate the understanding of my question, follow the following example:: A POJO: public class Person { private String name; private String location; } String JSON: String json = {name:"Jose",…
-
3
votes2
answers783
viewsDo I need to do unit testing of the system entities?
I am working on a project and participating in a team , we were given the task of doing a series of tests with a system,testes de integração continua, testes unitários .... The point is that all…
-
2
votes2
answers173
viewsHow to create Pojos with annotations quickly?
I have a database with many tables, I have to create the Pojo of each table? If yes, have to automate?
-
0
votes1
answer145
viewsJSON to POJO returning Null
I’m making a request for the site’s API swapi and whenever I do the conversion from JSON to POJO, I get the NULL return RestTemplate restTemplate = new RestTemplate(); String fooResourceUrl =…
-
0
votes2
answers72
viewsHow to access a String inside the body() in the retrofit in Kotlin?
I’m trying to access the json content inside body() through retrofit. I need the "url" in String. What’s missing from my code? Debugging the code I saw that the response.body() is returning the…