Tagged Questions
POJO is an acronym for Plain Old Java Object. The name is used to emphasize that a given object is an ordinary Java Object, not a special object, and in particular not an Enterprise JavaBean.
29
votes
5answers
1k views
Why shouldn't I use immutable POJOs instead of JavaBeans?
I have implemented a few Java applications now, only desktop applications so far. I prefer to use immutable objects for passing the data around in the application instead of using objects with ...
18
votes
3answers
19k views
Difference between DTO, VO, POJO, JavaBeans?
Have seen some similar questions here and here.
Can you also please tell me the contexts in which they are used?? Or the purpose of them?
12
votes
7answers
15k views
Is there a library to convert Java POJOs to and from JSON and XML?
I have an object graph that I would like to convert to and from JSON and XML, for the purposes of creating a REST-style API. It strikes me that someone must have done this already, but a quick search ...
11
votes
2answers
1k views
POJO's versus Cursors in Android
I usually tend to define the model layer of my apps using POJO's, such as Article, Comment, etc.
I was about to implement an AlphabetIndexer in the adapter of one of my ListViews. Right now this ...
10
votes
5answers
769 views
What does the term Plain Old Java Object(POJO) exactly mean?
What does the term Plain Old Java Object(POJO) mean ? I couldn't find anything explanatory enough.
POJO's Wikipedia page says that POJO is an ordinary Java Object and not a special object. Now, what ...
6
votes
7answers
163 views
getters and setters performing additional logic
I have a Java class which represents the correlation between two elements (typical POJO):
public class Correlation {
private final String a;
private final String b;
private double ...
6
votes
2answers
2k views
android jackson json object mapper array deserialization
i need help parsing a response with the jackson mapper to a POJO. i have this as a response:
"data": [{
"item": {
"downloaded": false,
"moderated": false,
...
6
votes
4answers
409 views
Plain Old Objects in Ruby?
I notice in Ruby it is very common to for vendor APIs to pass back results as arrays? Shouldn't Plain Old Objects (Like POJOs in Java) be more of a standard? If I write my own library shouldn't I use ...
6
votes
1answer
5k views
What is the difference between a JavaBean and a POJO?
I'm not sure about the difference. I'm using Hibernate and, in some books, they use JavaBean and POJO as an interchangeable term. I want to know if there is a difference, not just in the Hibernate ...
6
votes
7answers
3k views
What is the correct syntax for “is” variable getter/setters in a POJO class?
If a class contains a variable named "blah", then the standard getter/setter syntax is obviously getBlah() and setBlah(). But if I have a POJO class with a variable named isBlah, would I use:
public ...
5
votes
2answers
180 views
Mapping POJO to Entities
In our project we have a constraint of not having the luxury to alter the table structure already in place. The tables are highly denormalized in nature.
We have come up with good POJOs for the ...
5
votes
7answers
2k views
XStream or Simple
I need to decide on which one to use. My case is pretty simple. I need to convert a simple POJO/Bean to XML, and then back. Nothing special.
One thing I am looking for is it should include the ...
5
votes
6answers
1k views
Is there any way to declare final fields for Hibernate-managed objects?
I'm just getting started with Hibernate, and all the examples I'm seeing so far look pretty much like the tutorial in the Hibernate documentation:
package org.hibernate.tutorial.domain;
import ...
4
votes
2answers
331 views
Scala syntactic sugar with java listener pattern
I have to use java code in my scala project. The java code encourages the usage of a listener pattern. The code is something like this:
asyncHttpClient.prepareGet("http://www.ning.com/ ...
4
votes
4answers
220 views
Are these synonymous, a subset of each other or completely different?
Are the notions mentionned in the question title synonymous to a certain degree? Where do the main differences lie (context, structure, ...) and can one be considered a subset of another? Here's some ...
4
votes
12answers
2k views
JUnit tests for POJOs
I work on a project where we have to create unit tests for all of our simple beans (POJOs). Is there any point to creating a unit test for POJOs if all they consist of is getters and setters? Is it ...
3
votes
2answers
108 views
POJO or DTO approach
I am developing a new web application with Struts2, Spring and Hibernate as its core building blocks.
We have created POJO classes with respect to hibernate mapping files.There will be some inputs ...
3
votes
3answers
93 views
How to convert multiple POJOs to xml in required format?
We've requirement where we need to generate XML file for sending it to another system. I was looking at this example (which uses JAXB).
...
3
votes
4answers
292 views
JPA best practices?
I’m working on a little multi-tier application utilizing JPA/EclipseLink as a persistence layer. In my current design I have two sets of objects, POJOs and Entity objects, I use POJOs for general ...
3
votes
2answers
96 views
Differences between BeanInfo:methodDescriptors and class:declaredMethods : multiple methods with same name and method masking
When trying to get JPA annotations at runtime for some properties, I encountered this problem. I can't explain why.
PS: after a debugging session with Spring, I found the explanation of this problem: ...
3
votes
4answers
152 views
What is the easiest framework to transfer POJOs between Java programs?
I need a framework to transfer POJOs between two (or more in a client/server model) Java programs over TCP/IP. I need it to be as simple as possible but it must support several clients per server, and ...
3
votes
2answers
773 views
IntelliJ IDEA 10 generate entity (POJO) from DB model
I have a simple question, how can I generate entity (POJO) from database model using IntelliJ IDEA 10. I create "Data source" in IntelliJ but I have not any idea how can I generate the POJO. I spend 2 ...
3
votes
4answers
547 views
A tool for transforming POJO to XML and JSON, based on xml-mapping is needed
I need an open-source tool which can convert POJOs to XML and JSON strings.
Jersey (and probably other JAX-RS implementations) would fit these requirements if mappings could be configured through ...
3
votes
3answers
654 views
Java, Hibernate annotations, How to add methods to POJO object?
I am using hibernate annotations. How to add methods to POJO object? For example i have "getChildNodes" method, associated with database, but i want also add recursive method "getAllChildNodes". I get ...
3
votes
1answer
402 views
Up-to-date Swing MVC example + Question
I'm looking for an article or tutorial that gives an example of what an up-to-date MVC pattern (2.0?) should look like with the Swing framework.
Also, being more used to a layered architecture, I'd ...
3
votes
3answers
3k views
EJB vs Spring + POJO
What advantages does EJB have to be stacked with Spring? Why couldn't I just use Spring Entity Manager, Security, and POJOs to do what EJB does?
3
votes
5answers
672 views
To EJB3 or not?
I have an architecture scenario and I would like to discuss to get your opinion.
I can choose between these two (this is a constraint imposed on me)
Use EJB3+JPA - no Spring/Hibernate
POJO + JDBC ...
3
votes
5answers
1k views
Converting MySql DateTime type into something more friendly
I have a Java web app that reads a MySql db and returns DateTime fields. What is the best way to convert the DateTime fields returned in the resultset into something more readable?
Currently the ...
3
votes
2answers
693 views
What constitutes a rich domain model in a POJO/POCO?
What is the difference between
A simple fields-accesors-mutators class
A rich-modeled class
What constitutes rich modeling in business-domain classes?
2
votes
5answers
34 views
Set object fields from HashMap
Is there a library that can do the following?:
Given an Object and a HashMap, it enumerates the keys of the Hashmap and looks up the setters for these keys in the Object and sets the associated ...
2
votes
2answers
50 views
Scala Xml auto transient when value is null
I know to generate xml with pojo I can do something like this,
class Person(name : String, age : Int){
def toXml() = <person><name>{ name }</name><age>{ age ...
2
votes
3answers
417 views
Hibernate to POJO Generator
I was googling for Hibernate to POJO Generator and found this Hibernate POJO Generator .
I downloaded its jar file but couldn't find any way to use it.
I want to generate all Hibernate DAO related ...
2
votes
2answers
161 views
Java - how to simplify my java
I am writing some java code in the Spring Framework.
I've got two beans, person and person1. They have a slightly different structure, that is to say the variable names for each differ slightly.
...
2
votes
2answers
239 views
Passing complex JPA Entities to the controller with POJO
My team is coding an application that involves editing wikipedia-like pages.
It is similar to the problem we have with registration:
A straightforward implementation gives something like
public ...
2
votes
7answers
305 views
Simple Code Generation
I am building a series of POJO's and some other classes with simple functionality. The only variation between them are mainly the names and the private vars. I would like to generate the code ...
2
votes
2answers
165 views
easy way to make many pojo into one pojo
Am having a registration form which has multiple pages. So, I am mapping one page to one pojo. Finally, when I processing with database, I want to make it as single pojo to commit. Any idea to ...
2
votes
2answers
814 views
How to get property names of a pojo class without public no-arg constructor?
I want to get an array(or list) of a POJO's property names .
I tried commons-beanutil's BeanUtils.describe(obj) , but it needs an object instance.
But what if I only have that class , without a public ...
2
votes
1answer
168 views
Is there a framework for dynamically generating a Swing GUI from a Pojo in Runtime?
My problem is, that I have simple Pojos or simply objects that contain data. These can vary and new types of these can be added during runtime.
So I need a Swing GUI to input text to them. Is there ...
2
votes
1answer
846 views
Generate Map<String,String> from POJO
I have a POJO, and a (currently not-yet-built) class that will return Lists of it. I'd like to automatically generate the code necessary for the POJO to be accessed as a Map. Is this a good idea, is ...
2
votes
2answers
640 views
Spring - How to insert a nested bean using a SimpleJdbcDaoSupport class
I have two beans (POJOs) - a Customer and an address class defined like this:
public class Customer {
private String name = null;
private Address address = null;
public Customer() {
...
2
votes
2answers
856 views
How does spring map post data to POJO?
I have a spring controller defined like this:
@Controller
@RequestMapping("/user")
class UserController {
...
@RequestMapping(method=RequestMethod.POST)
public String save(User user) {
...
2
votes
1answer
515 views
Is dependency injection possible for JSP beans?
This may be a long shot question..
I am working on an application that is based on JSP/Javascript only (without a Web framework!)
Is there a way to have depencency injection for JSP beans?
By jsp ...
2
votes
2answers
810 views
Hibernate generate POJOs with Equals
We are using hibernate in a new project where we use the hibernate.reveng.xml to create our *.hbm.xml files and POJOs after that. We want to have equals methods in each of our POJOs.
I found that you ...
2
votes
5answers
982 views
Java: What is the fastest way to inject fields using reflection?
Suppose, I have a lot of classes, which are constructed using Java reflection (for some reason). Now I need to post-inject values to fields, which are
annotated with @PostInject.
public class ...
2
votes
2answers
574 views
Scalability implications of converting stateless session beans to POJOs
Imagine a heavily-used service object that's implemented as an EJB 2.1 SLSB, and that also happens to be thread-safe in itself by virtue of having no state whatsoever. All its public methods are ...
2
votes
2answers
187 views
How do I make my pojos transactional?
I have a multi-threaded, multi-server web application with hibernate and spring managing transactions with AOP. The problem is, I need to maintain in-memory data and keep it current with the state of ...
2
votes
3answers
2k views
Pojo to xsd generation
Is there a library which could generate a xsd schema from a java class?
Google yields lots of results the opposite ( java classes from xsd ).
2
votes
2answers
226 views
Value object with OID
Can you describe the pros and cons of including an OID (typically a database row identifier) in a POJO representing an entity in your model?
In fact I'm not talking about issues related to ...
1
vote
1answer
38 views
Custom Class for JasperReports field
I would like to create a report with a custom class as follows:
public class Class1 {
String cl1_f1;
String cl1_f2;
}
public class Class2 {
String cl2_f1;
String cl2_f2;
Class1 cl1_ob1;
...
1
vote
3answers
32 views
How to reference third-party library source code for client use in GWT
The GWT documentation states that all the source code for compilation to JavaScript on the client-side must be in a "sub-package" of the gwt.xml file. How does this work for when one references ...