2
votes
5answers
176 views
Java: What is the fastest way to inject fields using reflection?
Hello, everyone!
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 …
1
vote
3answers
266 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?
1
vote
1answer
41 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.
If I conver …
1
vote
2answers
95 views
Does JBoss cache class files?
I'm wrestling with a strange problem: When I make a change to a POJO or Seam Component in my localhost JBoss instance, restart it, and load the page, the change is visible. However …
2
votes
2answers
77 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 shou …
1
vote
2answers
87 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 curren …
3
votes
1answer
240 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 …
0
votes
1answer
79 views
how can i leave out fields from an axis2 soap response?
Hello.
I have an Axis2 Web Service that requests the status of some objects. The objects can either exist on the server, or not exist.
The web service is implemented with POJOs, …
1
vote
2answers
147 views
Pojo to xsd generation
I was just wondering if there was a library out there which could generate a xsd schema from a java class .
Google yields lots of results the opposite ( java classes from xsd ).
1
vote
3answers
349 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?
0
votes
3answers
392 views
POJO vs EJB vs EJB 3
Does anyone have any example of what a Java Class might look like as a POJO, EJB, and EJB 3? I'm trying to understand these java technologies but am having trouble. I was hoping it …
3
votes
6answers
216 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, …
2
votes
4answers
156 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/Hi …
4
votes
11answers
561 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 …
0
votes
1answer
67 views
What is a good way to do multi-row updates in struts (with struts live)?
Without using DynaForm and it's kin.
I would like to use a POJO data transfer object, e.g., Person:
public class Person {
private Long id;
private String firstName;
priv …
