I am using MyBatis 3.0.3 and have problem: some columns in database have names with underscores and these columns should be mapped to the entity properties (that are of course in camelCase)

class User {
  private String first_name;
  ...
}

public interface UserDao {
  @Select("SELECT * FROM users")
  List<User> findAllUsers();
}

Unfortunately I can't see any way to solve that declaretively (like it is done in JPA - @Column(name = "first_name")). I could make aliases in select-clause for such columns (sush as first_name as firstName and etc.), but that also looks lame.

Any ideas? Thanks.

link|improve this question

1  
Look into the myBatis @Results and @Result annotations. – DwB Feb 22 '11 at 15:30
feedback

1 Answer

up vote 5 down vote accepted

Thanks to DwB. That helped:

    @Select("SELECT * FROM users")
    @Results({
        @Result(property = "firstName", column = "first_name"),
        @Result(property = "lastName", column = "last_name")
    })
    List<User> findUsers();

ps But in case of multiple queries I need to boilerplate @Results/@Result code for each method where entity User is returned. In my case there will be a very few places so it isn't a problem, but in general I would still like to find more general solution.

link|improve this answer
2  
I think you can mix xml config and annotations. Leave the @Selects in code for the actual SQL but put the <resultMap> part in an xml config file. The result map should be applied the object / class level (based on the namespace) so you wouldn't have to specify @Results on each method. – AngerClown Feb 23 '11 at 16:23
feedback

Your Answer

 
or
required, but never shown

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