Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For example I have PersonEntity and want to use it in rich:comboBox. I must specify converter for this entity (otherwise toString of PersonEntity will be used). PersonConverter return firstname and lastname - "John Smith" and there can be many persons with same name and surname, so converter's getAsObject method will fail to distinguish them and wrong enity will be choosed. So, what should I do?

share|improve this question

1 Answer

I think you cannot do anything as soon as they are strings.

You could modify your getAsString method to either add a unique identificator to each string e.g. the database PK like [firstname lastname id] or detect duplicates and then add an increment only to duplicates such like:

[John Doe]

[John Doe (2)]

[Arthur Miller]

Then you have to ensure that your getAsString and getAsObject database queries give result sets in the same order.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.