Top "Mybatis" questions

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

MyBatis, how to get the auto generated key of an insert? [MySql]

how can I get the generated key of an insert with MyBatis? I read many pages about this question but …

java mysql insert mybatis
MyBatis Insert List values

Mapper.xml (Mapper xml file) <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//…

java oracle mybatis
mybatis IllegalArgumentException: Mapped Statements collection does not contain value

i have many problem with spring e mybatis. This is my spring configuration: i have the same configuration and ComuneMapper.…

java database spring ibatis mybatis
mybatis spring mvc application, getting Invalid bound statement (not found)

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 …

spring spring-mvc mybatis
Sybase date comparison - Correct format?

I'm pretty new to Sybase and am writing a query to return results after a specified date, and also before …

sql database sybase mybatis
MyBatis Batch Insert/Update For Oracle

I've recently started learning to use myBatis.I am now facing such a scenario, I need to constantly fetch a …

java sql oracle mybatis
Can I pass a List as a parameter to a MyBatis mapper?

I'm trying to define a simple @Select annotation in MyBatis to get a collection of objects based on criteria defined …

java mybatis
Return HashMap in mybatis and use it as ModelAttribute in spring MVC

I want to display list of categories in my Jsp page using spring mvc @modelAttribute. In my mapper.xml file …

java spring-mvc mybatis ibatis
How to implement batch operations with MyBatis/Spring?

I am wondering how to implement batch operations with my insert statements using MyBatis 3 & Spring 3? For example, here is …

java spring mybatis
(How) can I use "LIKE" in SQL queries with MyBatis safely and DB-agnostic?

In MyBatis, you mark the places where parameters should be inserted into your SQL like so: SELECT * FROM Person WHERE …

sql mybatis