this is my first mybatis spring mvc application using spring 3.2.4, mybatis-spring-1.2.1
When i try to call my webservice i get the error::
org.spri
In my case, using a query in an annotation, i didn't give enough credit to the fact that the XML in the annotation gets interpreted as XML.
So if you have
@Select("select * from table where id <> 'blabla'")
The <> is messing up the XML. You need to put it in a CDATA section
@Select("select * from table where id ]]> 'blabla'")