Top "Mybatis" questions

MyBatis is a framework for mapping objects to relational databases with an emphasis on high performance and simplicity.

mybatis: Using mapper interfaces with XML config for global parameters

I like the XML notation for specifying global parameters such as connection strings. I also like Mapper annotations. When I …

java orm ibatis mybatis
No typehandler Exception in Mybatis

My server--> weblogic server 10.3 and my Mybatis version-3.2.2 org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' …

java weblogic mybatis weblogic-10.x typehandler
How to run arbitrary sql with mybatis?

I've an application that use mybatis for object persistence. But there are chances I need to run arbitrary sql(from …

java database mybatis
iBatis to MyBatis migration efforts?

I am using iBatis-2.3.4.726 in my production application. I want to migrate my production application to use MyBatis. What points …

ibatis mybatis
Using tuples in ORACLE IN clause and a condition for one element in the tuple

I have seen many questions here for using tuples in the IN clause. My situation is a little different from …

sql oracle orm ibatis mybatis
Ibatis/MyBatis select dynamically without need to create any Pojo / Mapper

Is there any way to select/update/delete dynamically using Ibatis/MyBatis? When I say "dynamically" it means I don't …

ibatis mybatis
mapping input and output parameters with MyBatis

I am learning how to use MyBatis. Honestly I like this framework very well. It is easy to use and …

java postgresql mybatis spring-mybatis mybatis-generator
Can I use MyBatis to generate Dynamic SQL without executing it?

I have some complex queries to build with a number of optional filters, for which MyBatis seems like an ideal …

java dynamic-sql mybatis
SELECT LAST_INSERT_ID()

Can somebody explain how works MySQL function LAST_INSERT_ID(). I'm trying to get id of last inserted row in …

java mysql sql mybatis last-insert-id
For a new project using Spring with JDBCTemplates, iBatis/myBatis or Hibernate?

Hi there we are starting a project in which we have to make the decision between using Spring JDBCTemplates, iBatis/…

hibernate spring persistence ibatis mybatis