Tagged Questions

0
votes
4answers
26 views

Java Beans - creating an inspector window

I'm wondering whether there is an existing Java class that, given a Java bean, uses introspection to find all the publicly modifiable fields, and displays them using default Proper …
3
votes
6answers
2k views

Json <-> Java serialization that works with GWT

I am looking for a simple Json (de)serializer for Java that might work with GWT. I have googled a bit and found some solutions that either require annotate every member or define u …
1
vote
3answers
128 views

Copy java object/class from one classloader to another classloader

Hi is there a way to copy one class loaded context (atrributes etc) from one classloader (for instance a 'made' class Point) to another classloader? Making clear, Example: I hav …
0
votes
3answers
40 views

java beans: difference between persistent field and persistent property?

I got the impression that if we use persistent fields, there is no need for getter methods since the entity manager references the instance variables directly. However, when I remo …
0
votes
2answers
144 views

How to access another bean form in an Struts Action?

I have a form bean named "SearchForm" that I use to display search results. The user then clicks on one of the element. I populate a "ElementForm" with the details of the element a …
1
vote
2answers
185 views

How many Beans should be enough ?

Hi . I'm a undergrad Student at a German University. I have a team Programming Course .. where we have to use JavaEE/JSF to make a social networking site .. like LinkedIn. Anyway m …
1
vote
3answers
72 views

Howto handle a POJO like a bean?

How can I access a simple java object as a bean? For example: class Simple { private String foo; String getFoo() { return foo; } private void setFoo( Stri …
1
vote
8answers
2k views

Word Wrap in Net Beans

I'm just learning to code in java. Netbeans is great but I just found there's no way to wrap text in it (or hopefully I haven't found it yet). Is there any way to do this, and if n …
0
votes
1answer
111 views

Spring MVC dynamically binding to and from a list of beans

Hi, I am new to spring MVC.In my application I need to bind dynamically generated textbox contents to a list of beans dynamically.I went through the spring mvc book for binding t …
2
votes
2answers
34 views

Monitoring Changes of a Bean to build deltas?

Hi StackOverflow! I have several Beans in my Application which getting updated regularly by the usual setter methods. I want to synchronize these beans with a remote application w …
2
votes
5answers
462 views

Auto-cast Spring Beans

Is there a way to auto-cast Spring beans to the class defined in the application context XML? I'd like to avoid putting type information about the beans in 2 places.... in the xml …
1
vote
1answer
37 views

Threads in Session Beans

Hi, I have a session bean that uses Bean managed txns. This bean has one business method that simply delegates the control to a POJO which takes care of all the processing. Here t …
0
votes
4answers
237 views

warning in faces-config.xml integrating spring with jsf

Hello, I am trying to integrate spring into a jsf application. In faces-config.xml I have included this: <application> <el-resolver>org.springframework.web. …
0
votes
4answers
126 views

Best way to manually pull a spring bean?

How do I pull a spring bean manually? I have a rather large web application, and in a given service, a transient object requires access to a bean that is machine specific (database …
0
votes
1answer
143 views

How to enumerate and initialise beans in spring/jsf

After my user logins, i'd like to enumerate all of the beans faces-config and initialize selectivly some of the beans, what is the best way of doing this? The beans are initialize …

1 2 3 4 next
15 30 50 per page