Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
590 views

Java Beans, BeanUtils, and the Boolean wrapper class

I'm using BeanUtils to manipulate Java objects created via JAXB, and I've run into an interesting issue. Sometimes, JAXB will create a Java object like this: public class Bean { protected ...
3
votes
1answer
85 views

Bean Property Access and Annotations

Are there any java libraries which allow me to utilize BeanUtils like property access bean.prop1.prop2 while allowing access to the annotations on the getter/field itself? For example, I have a bean ...
3
votes
7answers
2k views

Java Collections.sort - help me remove the unchecked warning

List<Question> questions = new ArrayList<Question>(); questions.addAll(getAllQuestions()); //returns a set of Questions Collections.sort(questions, new BeanComparator("questionId")); ...
2
votes
1answer
120 views

Testing BeanUtils / test should fail when a new property is created

I'm using BeanUtils to map some DTO class to Domain classes (and vice/versa). (using BeanUtils copy properties) I want to test my code. How do I write test that will fail if someone writes creates an ...
2
votes
1answer
126 views

Are there Android compatible alternatives to Property Utils?

Is there a handy-dandy equivalent to org.apache.commons.beanutils.PropertyUtils on Android? I can't seem to use bean utils in my android app due to some dependencies on PropertyDescriptor,and ...
2
votes
2answers
396 views

Recursive BeanUtils.describe()

Is there a version of BeanUtils.describe(customer) that recursively calls the describe() method on the complex attributes of 'customer'. class Customer { String id; Address address; } Here, I ...
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
1answer
142 views

JavaBeans Comparator/Diff

Is there a library that can compare two javabeans by their properties and tell you the differences between them? I was thinking this would be something BeanUtils will do but can't find it in the ...
2
votes
2answers
815 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
2answers
428 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
1answer
685 views

BeanUtils with Maps

How can I use the BeanUtils setProperty method with Maps. For example, this method: public void setAddress(String type, Address address); Can be setted using: BeanUtils.setProperty(beanObject, ...
1
vote
1answer
36 views

BeanUtils - 'describe' method returning Incorrect array value

I want to convert a bean class to a map (key=the name of the member,value=the value of the member). I'm using the method BeanUtils.describe(beanClass); (Edit:I'm using commons-beanutils 1.8.3, jdk ...
1
vote
1answer
89 views

Quick fix for org.apache.axis2.databinding.utils.BeanUtil.deserialize(BeanUtil.java:467)

I've encountered the following problem with both Axis2 v1.6.1 and v1.6.2, when using lists: java.lang.StackOverflowError: org.apache.axis2.databinding.utils.BeanUtil.deserialize(BeanUtil.java:467) ...
1
vote
2answers
96 views

When can PropertyUtils.copyProperties fail silently?

I'm using PropertyUtils.copyProperties() to copy an object's properties via reflection, and it used to work well. Recently however, it started not doing anything. It doesn't throw an exception, but ...
1
vote
2answers
44 views

What is the Scope of Bean object with BeanUtils.populate() Method?

i previously used <jsp:useBean> tags that have facility to decide the scope of bean for page or request or session or application but now i moved to MVC architechture, where i am using BeanUtils ...
1
vote
1answer
77 views

How do i Copy source to target bean with fewer properties in target using BeanUtils?

I guess Beanutils.copyProperties() throws exception on copying from source to target with a property that does not exist in target. String[] ignoreList parameter only ignores properties that exist in ...
1
vote
2answers
353 views

Retrieve field values using BeanUtils

I want to extract private field values that are not marked by certain custom annotation, is this possible via BeanUtils? If yes, how?
1
vote
0answers
50 views

Does BeanUtils work with Java Wrapper classes?

I want to get the value of an int form the Java wrapper Class Integer using apache BeanUtils
1
vote
3answers
897 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 ...
1
vote
2answers
800 views

What the best way to convert from String to HashMap?

I would like to serialize a Java HashMap to string representation. The HashMap will contains only primitive values like string and integer. After that this string will be stored to db. How to restore ...
1
vote
2answers
884 views

Netbeans platform projects - problems with wrapped jar files that have dependencies

For starters, this question is not so much about programming in the NetBeans IDE as developing a NetBeans project (e.g. using the NetBeans Platform framework). I am attempting to use the BeanUtils ...
1
vote
1answer
119 views

BeanUtils with an addXX method

I'm using the Apache BeanUtils setProperty method to import data from an Excel file in a generic manner. I provide the parser a list of "colum name" and "property name" pairs and then the parser sets ...
1
vote
4answers
4k views

How to get the list of all attributes of a Java object using BeanUtils introspection?

I have method which gets a POJO as it's parameter. Now I want to programmatically get all the attributes of the POJO (because my code may not know what are all the attributes in it at run time) and ...
1
vote
2answers
1k views

How can I use BeanUtils copyProperties to copy from boolean to Boolean?

BeanUtils copyProperties, out of the box, doesn't seem to handle copying from Boolean object properties to boolean primitive properties. I figured I could create and register a converter to handle ...
0
votes
1answer
23 views

Serialize to key/value pairs using BeanUtils

I'd like to write a Java program that takes arbitrary data and stores it in a MySQL database. The data can later be read again and the original object structure is reconstructed. The background is ...
0
votes
0answers
59 views

Cloning a Java bean with few of the properties values - BeanUtils

I am having a Java bean, which i want to clone it to get a new instance, but in the new instance, I want few of the properties to have values, others i don't want to be cloned/copied. Example:- ...
0
votes
2answers
119 views

Populate default values through reflection in java

I have a complex object hierarchy that has a couple of extends. I am looking for a library that can reflectively insert default values on all fields. For instance: class Person { String name; ...
0
votes
1answer
653 views

BeanUtils - 'describe' method returning InvocationTargetException

I am trying to obtain in a Map the properties of the following Entity: @Entity @Table(name = "ps_parameter") @NamedQueries({Named Queries Here..}) public class PSParameter implements ...
0
votes
1answer
216 views

Problem with BeanUtils from Apache

I'm trying to set a property in a bean and I cant seem to get BeanUtils to work... Heres a small example of the problem I am getting. public class Example { public static void main(String[] ...
0
votes
1answer
355 views

BeanUtils.copyProperties - how to copy the values to the custom bean reference in a collection

package A; Class A{ String name; List<ClassB> myList; // getters and setters } package A; Class B{ } package C; Class A{ String name; List<ClassB> myList; // getters ...
0
votes
1answer
472 views

Apache Commons BeanUtils get list properties

In Apache Commons BeanUtil, how to get a type inside a list ? for example class Track { List<Actor> actorList = new ArrayList<Actor>(); } ...
0
votes
1answer
145 views

What's the best way to register a Converter for all subclasses of a particular class when using Commons BeanUtils?

For example, if I wished to register a Converter for all instances of java.util.Map, is there some way of doing this: new BeanUtilsBean().getConvertUtils().register(new MyConverter(), Map.class); ...
0
votes
1answer
716 views

Setting a List indexed property with BeanUtils

I'm attempting to use BeanUtils to interact with a Java bean similar to the following: public class Bean { private List<Integer> prices = new LinkedList<Integer>(); public ...
0
votes
1answer
206 views

can beanutil get the property of one field with its native type

Hi: I am using BeanUtil to get the properties of some bean,then put them to map. However I found that the getProperty() can only return the string value,I wonder if it can return the native(original) ...
0
votes
1answer
668 views

ConversionException: Unparseable date on Jasper reports

I'm working on a system that uses Jasper reports. Recently it started throwing this error: org.apache.commons.beanutils.ConversionException: Unparseable date: "03/03/1981" at ...
0
votes
1answer
709 views

Apache BeanUtils.copyProperties is spilling too much log

How can I switch off logging for BeanUtils.copyProperties ? It creates way too much logs and hampers the log file readability. Thanks heaps.. Sample code ...
0
votes
2answers
684 views

Need easy way to force all DynaBean property names to lower case

I'm developing functionality that can operate on concrete data beans returned via Hibernate, or DynaBeans returned by using Jakarta Commons/BeanUtils' RowSetDynaClass (which wraps a JDBC result set). ...
0
votes
2answers
4k views

BeanUtils.copyProperties missing deeply nested variables?

I'm using BeanUtils.copyProperties to copy the entire content of one object into another that inherit from it. Here is the context, the domain object from which the values are copied contains a Set ...
0
votes
2answers
940 views

Sorting an collecton of java beans by field

I have an collection of java beans that populate a JSF DataTable I'm trying to implement column sorting. I'd like to sort the array/collection depending on the field selected. I have using ...