I have a parameters Map with property name “xx.xx”, but Ibatis cannot know property named “xx.xx” (“xxxx” is ok).
how can I use Map property with name contains dot(.) character? or I have to remove the dot(.).
Thanks very much
Thang Hoang
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
iBatis uses JavaBean naming conventions, and “xx.xx” isn’t a valid JavaBean property name. I think you’re going to have to change those map keys to something more conventional, before feeding it to iBatis.