Tagged Questions
0
votes
0answers
16 views
Automatically instantiate Objects and set Value for a given Path
I want to set values by a given Path String in a nested Java Object structure.
If a collction property dosen't exists the property should get automatically instantiated:
public class A {
...
1
vote
4answers
60 views
Java Reflection - how to set value for the class which are extended from One and Two
Goal :
set the value for a class fields as well the extended class fields
Example :
public class CreateRequisitionRO extends AbstractPortfolioSpecificRO {....}
i am able to set value for the ...
3
votes
2answers
77 views
How to set a Property (i.e. through BeanUtils) without knowing it's type
I need to set some properties of a JavaBean. I have a generic Map<String, String> where the first String is the Name of the property and the second one represents it's value.
Now if the map ...
0
votes
0answers
66 views
reflecting scala field annotations idiomatically
given (simplified) this code in Scala 2.10:
case class Foo(
@Size(min=32, max=32) @NotEmpty @Pattern(regexp="^[a-zA-Z0-9]{1,5}\\.[a-zA-Z0-9]{1,3}$")
tmfItemId: String,
@Size(max=32) @NotEmpty
...
1
vote
1answer
172 views
Convert Hashmap with simple,indexed,nested, or combined type attributes as keys into a Java Bean
I am trying to convert a java bean to hashmap and then later convert the hashmap to java bean. For converting Java Object to hashmap this post helped me. Convert a JavaBean to key/value Map with ...
1
vote
0answers
185 views
PropertyDescriptor vs. setter that returns a value
I have to port a lot of code from java6 to java7. Java6 has no problem with setters, returning values. So this example code:
public class Main {
public static class MyDummy {
private String ...
1
vote
3answers
733 views
How to print Java Bean completely using reflection or any other utility
I have an Java bean class Person containing 3 variables:
name (String)
age (String)
address (Object).
Address contains 3 variables:
street
door_no
city
I would like to have a utility which ...
0
votes
0answers
290 views
How can I iterate over Java Bean properties in Play 2 Scala template?
Suppose I have a Java bean:
class Fruit {
public String getName(){}
public String getOrigin(){}
public int getRipeningTimeInDays(){}
}
And there's a Play 2.0 scala template which takes ...
1
vote
3answers
251 views
get a list/array of the names of the the properties of a java bean in the order they appear in the source file
I have a class like
class A {
private String property1;
private String property2;
private String property3;
// constructor , getters , setters
}
it is possible to get a ...
3
votes
1answer
224 views
java - Best way to display object properties
Reflection or hashmaps? Suppose you are writting a graphical application where you have objects lying around and users have the posibility of clicking on them. That said, you want to display the ...
0
votes
0answers
46 views
Apache Beanutils, are there other jars out there that do Bean reflection?
I am having trouble with OSGI and a missing constraint exception with Apache's commons-beanutils-1.8.3. I can't figure it out and I was wondering if there is another Bean reflection jar out there so I ...
5
votes
2answers
3k views
BeanUtils.copyProperties convert Integer null to 0
I noticed that BeanUtils.copyProperties(dest, src) has a strange side effect. All null Integers (probably Long, Date etc. too) convert to 0 in both objects: source (sic!) and destination. Version: ...
8
votes
3answers
228 views
How can the type of a bean property be null?
In the book "Thinking in Java" there is an example of how to get information for a bean via Reflection/Introspection.
BeanInfo bi = Introspector.getBeanInfo(Car.class, Object.class);
for ...
8
votes
1answer
5k views
Get bean property getter or setter by reflection?
Suppose I have a handle on an object of type , and I'm told by configuration that it has a bean property of type int with the name age. How can I retrieve the getter for this document?
Is there a ...
1
vote
4answers
219 views
A reflection based Object binder for java.util.Properties?
I would like to automatically bind properties from a java.util.Properties instance to the fields in an object.
Preferable something like this:
Properties props = ... // has for instance the property ...
1
vote
3answers
619 views
Java introspection/reflection copy beans
I'm writing a common method which copies two different types of beans which have common fields. I'm using introspection to get the write and read methods, like
...
4
votes
2answers
10k views
Java Reflection Beans Property API
Is there any standard way to access Java Bean Property like
class A {
private String name;
public void setName(String name){
this.name = name;
}
public String getName(){
...
0
votes
4answers
380 views
In java i have a bean object(type unknown) i want to put the members of it into one hashmap
In java i have a bean object(type unknown) i want to put the values of members of that bean into one HashMap with class members as key.Without using reflection can i do that if so how ? otherwise tell ...
1
vote
3answers
4k views
Performance of BeanUtils vs. ReflectionToStringBuilder (for use in Bean classes)
I have a large number of Java bean classes in my web application, and I am trying to find a simple way to implement the toString() methods in these beans. The toString() method would be used for ...
0
votes
3answers
582 views
How To Populate A JavaBean Other Than Using Reflection
do you know if there is anyway that I can populate a javabean but i don't want to use reflection.
For example I have this xml template to pouplate it
Sample XML File
<property name = "card" ...
0
votes
2answers
246 views
How do I get a Method of a nested property?
I have a class Foo that a property of the type Bar.
public class Foo {
public Bar getBar() {
}
}
public class Bar {
public String getName();
}
Is there a helper class or method that ...
2
votes
2answers
1k views
Performance issues when calling java.beans.Introspector.getBeanInfo after inactivity
I am using a 3rd party library that dynamically creates instances of Java classes and populates those instances with the help of Introspector.getBeanInfo. Certain requests may result in 5 or 6 ...
1
vote
2answers
892 views
convert HashMap to JavaBean instance given javabean class
is there a utility out there for creating a bean (which has simple String attributes whose name match with HashMap keys ) given bean class as input along with properly set hashmap?
thanks,
Amit
1
vote
1answer
585 views
Java Property Annotation Standard/Library
I am trying to create a library which depends heavily on annotating class properties. The properties should be able to be annotated via getters or on the actual underlying fields (ala JPA etc.)
Is ...
2
votes
2answers
738 views
Deep bean copy with strategy for null property instantiation
I am looking for the simplest way to do a deep copy of a flat Map<String, String> of nested properties to a bean. Some of the nested properties are interfaces for which I would like to provide ...
2
votes
3answers
218 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( String foo ) {
...
2
votes
3answers
2k 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 ...
3
votes
2answers
2k views
java: easiest way to populate a bean using servlet params
without using any big web framework (just servlets), do you know a ready to use small library that can populate my bean properties from the params of an http request?
4
votes
6answers
640 views
Java Beans: Overglorified Associative Arrays?
I don't understand the nature of Java Beans that well. Well, at least how I see them used in some code-bases that pass through our shop.
I found this question:
...
1
vote
2answers
175 views
JavaBeans and DSLs
It's 2009 and we still all hold on the JavaBeans despite all their flaws, mostly because of the tooling support which we wrote in our own blood.
But now we have method chaining and internal DSLs and ...
1
vote
1answer
1k views
Reading contents of a managed bean with reflection in a JSF application
I want to print out the contents of a backing bean in an auto-generated way. So all the contents appear on a JSP. Is this possible anyhow?
Thanks in advance,
Daniel
1
vote
4answers
2k views
java.beans.Introspector getBeanInfo does not pickup any superinterface's properties
I just noticed that java.beans.Introspector getBeanInfo does not pickup any superinterface's properties. Example:
public interface Person {
String getName();
}
public interface Employee extends ...