Tagged Questions

1
vote
2answers
22 views

MVC Model to View event dispatch implementation

The MVC pattern wants that Model dispatches change status events to View. Which is the best implementation of this comunication if the Model is a simple javabean with setter and getter methods?
0
votes
2answers
26 views

Issues with JavaBeans Form

I have an assignment to use JavaBeans to create an online Banking application. I am trying to make the signup form but I am having some issues. When the form submits I am not able to get the values. …
0
votes
0answers
23 views

Writing a proxy in JSP

Hi people! I am trying to write a JavaBean to be used in a JSP, such that when a user writes the url to an external website the bean filters the page before displaying it to the user. Now what I …
1
vote
2answers
65 views

How do I print a list of strings contained within another list in iReport?

I am creating a simple reporting program using java and iReport (from jasper), which is supposed to create a report in pdf showing PCs with their IP address, their location, whether it's idle or not …
0
votes
8answers
96 views

Assert that two java beans are equivalent

This question is close, but still not what I want. I'd like to assert in a generic way that two bean objects are equivalent. In case they are not, I'd like a detailed error message explaining the …
1
vote
3answers
86 views

places where Java Beans used?

Hi , What is a java bean ..why do i need it .since i can solve all apps with my class and interface structure. Why do i need beans.And can you point me a place where beans are essential instead of …
0
votes
1answer
41 views

Java Bean web param not accepting nulls

The Java Bean web call is like this @WebMethod public void updateComment( @WebParam(name="Id") int Id, @WebParam(name="comment") String comment) { funct().updateComment(Id, …
0
votes
0answers
17 views

Java Beans - how do we get data from a bean from a jsp when the data is entered from a POJO

I want to populate data into one bean using a regular POJO. In order to get that data later, do I have to pass the reference to that bean around my code till I want to use it? Do I save that …
1
vote
3answers
402 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?
0
votes
2answers
51 views

PropertyChangeSupport and equals method

I'll try to explain my problem as clear as possible :). I am using PropertyChangeSupport to notify registered views for changes in the properties. One of the property is an object which properties are …
0
votes
2answers
51 views

What’s the deal with web service generation and JavaBeans?

I recently wrote some data access methods (plain old Java) that use immutable objects for both the request objects and the resulting data objects. I like the immutable objects because they prevent a …
0
votes
8answers
174 views

Other usage of the this keyword in Java

(For those who read my previous question, this is the same teacher and the same project.) My teacher 'inspected' my code for a web application project and provided some suggestions. One of the …
0
votes
2answers
117 views

Binding an Object Array to a Front-End in Java Server Faces

I have a Servlet which is called upon an Action and this Servlet is suppose to return a List of Objects. Now by having the Data Structure at the end of my Post my Servlet calls the Person.fetch() …
1
vote
1answer
112 views

Overriding equals and hashCode methods for a JavaBeans implemented in Scala

Hello, I'm working on a project using iBatis and a Java caching tool ehcache but I'm implementing the model classes in Scala. I'm having a stong feeling that I'll have to override the equals and …
2
votes
3answers
111 views

Java: accessing bean-type methods of an Object through reflection

Is this the appropriate way to access bean properties of an Object without knowing/caring about its exact type? (Or is there a built-in method that does this already?) Is there an appropriate …

1 2 3 4 next
15 30 50 per page