I am using MyBatis with Spring Integration as described here.

I am further using the Joda Date API instead of the Java Date API, now the tricky bit is ensure that MyBatis recognizes the Joda Date API, and enables me to query the same.

Now the documented way to achieve this is to use a DateTypeHandler

I am assuming that if we use the correct annotations, Mybatis will pick up the custom handler and register it with the sqlsessionfactory.

So my class looks like

@MappedTypes(value = DateTime.class)
@MappedJdbcTypes(value = {JdbcType.DATE,JdbcType.TIME,JdbcType.TIMESTAMP})

public class MyBatisJodaDateTimeType extends DateTypeHandler {
......
.....
}

Some how this does not register my Custom Type handler ...., What I am having to do, is write code like this at application startup ...

 SqlSessionFactory mybatisSessionFactory = applicationContext.getBean("sqlSessionFactory", SqlSessionFactory.class);
        MyBatisJodaDateTimeType myBatisJodaDateTimeType = applicationContext.getBean("myBatisJodaDateTimeType", MyBatisJodaDateTimeType.class);

        mybatisSessionFactory.getConfiguration().getTypeHandlerRegistry().register(DateTime.class, myBatisJodaDateTimeType);
        mybatisSessionFactory.getConfiguration().getTypeHandlerRegistry().register(DateTime.class, JdbcType.DATE, myBatisJodaDateTimeType);
        mybatisSessionFactory.getConfiguration().getTypeHandlerRegistry().register(DateTime.class, JdbcType.TIME, myBatisJodaDateTimeType);
        mybatisSessionFactory.getConfiguration().getTypeHandlerRegistry().register(DateTime.class, JdbcType.TIMESTAMP, myBatisJodaDateTimeType);
        mybatisSessionFactory.getConfiguration().getTypeHandlerRegistry().register(DateTime.class, null, myBatisJodaDateTimeType);

I know it looks like crap and i want to avoid it, cant i get MyBatis to scan my application for these annotations and then register my custom type handler automatically ?

I am sure that my type has not been registered (Using just the annotations) because i did a inspect in the MYBatis code and could not find my handler there ....

link|improve this question

54% accept rate
feedback

1 Answer

up vote 0 down vote accepted

I ran into the same problem, also for a Joda DateTime TypeHandler. Tracing through, I see that the handler is actually registered. However, TypeHandlerRegistry.getTypeHandler seems to use a null jdbcType to look up the handler.

Now, the last line in your code snippet above explicitly registers a handler for null JdbcType. Unfortunately, it seems to be impossible to include null in the @MappedJdbcTypes annotation. So that looks like a bug to me.

Oh, and you may be able to just remove the @MappedJdbcTypes annotation altogether, to get it working.

UPDATE:

Here's how I set up in my applicationContext.xml:

<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
    <property name="dataSource" ref="dataSource" />
    <property name="mapperLocations" value="classpath*:META-INF/persistence/*.xml" />
    <property name="typeAliasesPackage" value="com.mycompany.data" />
    <property name="typeHandlersPackage" value="com.mycompany.typehandler" />
</bean>
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
    <property name="basePackage" value="com.mycompany.persistence" />
</bean>

If you pick up type handlers by scanning a package like this, you can set the MyBatis logging level to debug to see which ones it attempts to add.

My TypeHandler starts like this:

@MappedTypes(DateTime.class)
public class DateTimeTypeHandler implements TypeHandler<DateTime> {...}
link|improve this answer
Are you suggesting that we could remove the annotation placed on the Typehandler and also remove the code which does the manual registering of the handler ? and then maybe it could work ? ... I just tested that scenario and it fails – Sudarshan Jan 27 at 9:40
Yes, that's how I got it working for myself, in the latest MyBatis release, for both selects and updates. So the only annotation is @MappedTypes(DateTime.class). – usethe4ce Jan 27 at 18:18
Can you tell me which version ? and also if you use the spring integration with MyBatis ? – Sudarshan Jan 28 at 7:41
Yes, MyBatis 3.0.6, MyBatis-Spring 1.0.2. – usethe4ce Jan 29 at 6:40
I am using the same versions, however when i debug the application i see that the TYPE_HANDLER_MAP does not have DateTime.class registered ... Have you done anything in your spring configs which enables this registration .. – Sudarshan Jan 29 at 15:29
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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