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

is it possible to map a string field with a particular format like:

aaa,bbb,ccc,ddd

into a List having elements [aaa, bbb, ccc, ddd] using iBatis?

What I need is to have in my model something like:

public class Request{
    private List<String> fieldOne;
    public List<String> getFieldOne(){....}
    public void setFieldOne(){....}
}

even if in my table the field is a simple string. Is this possible?

Thanks Roberto

share|improve this question

2 Answers

up vote 2 down vote accepted

You can do it through a CustomType Handler:

For example, in your mapping you define:

<result column="FIELD_ONE" property="fieldOne" jdbcType="VARCHAR" typeHandler="com.xxx.StringSplitTypeHandlerCallBack" />

and then you code your class StringSplitTypeHandlerCallBack implements TypeHandlerCallback , which would call String.split() inside the getResult() method.

UPDATE: Of course, if this conversion is only need for one field of one class, it might be more simple to define a pair of alternative setter/getters getFieldOneAsString(), setFieldOneAsString() in your class, and use property="fieldOneAsString" in your mapping

share|improve this answer

I'm not sure why you want iBatis to do it, but you could just use String.split() to do the work, and map the results.

share|improve this answer
yep I know how to do that on the java-side, I just wanted to know if it would be possible to do that automatically with ibatis – Roberto Apr 22 '10 at 10:53

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.