Tagged Questions

MyBatis is a framework for mapping objects (Java and .NET) to relational databases with an emphasis on simplicity. The objects are coupled with SQL statements and/or stored procedures using XML descriptor files. MyBatis is lightweight and quite easy to use since the only parts involved are the own ...

learn more… | top users | synonyms

11
votes
1answer
689 views

Is there a comprehensive example or tutorial for iBATIS 3 with annotations?

Is there a comprehensive example or tutorial for iBATIS 3 with annotations? I am specifically interested in moving away from an XML-based mapper configuration to using pure Java annotations where the ...
6
votes
2answers
1k views

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 try to combine the two, I get this exception. Is there a way to combine the ...
6
votes
2answers
3k views

How to use Annotations with iBatis (myBatis) for an IN query?

We'd like to use only annotations with MyBatis; we're really trying to avoid xml. We're trying to use an "IN" clause: @Select("SELECT * FROM blog WHERE id IN (#{ids})") List<Blog> ...
4
votes
1answer
639 views

Unit test MyBatis with HSQL instead of Oracle

I would like to unit test my MyBatis persistence layer using an HSQL in-memory database. The real application uses an Oracle database. This worked fine unitl we started adding auto incremented numbers ...
4
votes
1answer
140 views

What is the MyBatis equivalent to the iBatis <isParameterPresent> tag?

I am porting some old iBatis version 2.? code and am wondering how to replace the <isParameterPresent> tag? I have read the MyBatis user guide, and know you can do a <if test=""> but I do ...
4
votes
5answers
963 views

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/myBatis or Hibernate for our persistence layer. I am more or less familiar with the ...
4
votes
1answer
955 views

MyBatis columns mapping

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 ...
4
votes
2answers
888 views

Android application and myBatis

I'd like to use myBatis (iBatis 3) in an Android application. Has anyone tried such a thing or know of any resources for this?
3
votes
2answers
107 views

how to map java.util.Date to MySql Date in Ibatis when I take input through JSON

I am taking date of birth as input using JSON {"dateOfBirth":"1973-08-26"} This field exists in Person.java class import java.util.Date; public class Person { Date dateOfBirth; //Some ...
3
votes
2answers
96 views

MyBatis mapper injected directly into service class. What about exceptions?

I'm currently working with MyBatis-Spring integration framework and that's what I read from docs: Rather than code data access objects (DAOs) manually using SqlSessionDaoSupport or ...
3
votes
4answers
710 views

how to configure log4j for Mybatis to print my SQL

My project is set up with SpringMVC+Mybatis+EXTJS4. This is my configuration: # Rules reminder: # DEBUG < INFO < WARN < ERROR < FATAL # Global logging configuration ...
3
votes
3answers
734 views

How to configure Spring to make JPA (Hibernate) and JDBC (JdbcTemplate or MyBatis) share the same transaction

I have a single dataSource, I use Spring 3.0.3, Hibernate 3.5.1 as JPA provider and I use MyBatis 3.0.2 for some queries and my app runs on Tomcat 6. I have a HibernateDAO and a MyBatisDAO, when I ...
3
votes
1answer
1k views

MyBatis/iBatis - reusable sql fragments in a separate SQL Map file?

I would like to put sql fragments used by several of my SQL Map XML files in a separate file. At the moment, the <sql> elements with these fragments are in one of the mappers together with other ...
3
votes
1answer
1k views

Does myBatis implement JPA?

An easy question I suppose
2
votes
2answers
43 views

MyBatis 3.x trying to read a collection and populate the objects

I'm new to MyBatis and my project requires me to read the data from the Oracle database, populate the objects, reset the data if necessary and insert it back into the database. I'm trying to read ...
2
votes
2answers
150 views

How to pass an Integer Array to IN clause in MyBatis

There is a query in my Mybatis containing an IN clause which is basically a set of Id's ( Integers) I am now stuck on how can I pass an Integer array to this IN clause so that it pulls up the proper ...
2
votes
1answer
113 views

integrating jqgrid, mybatis, spring mvc and postgresql

How can i integrate jqgrid, mybatis, spring mvc and postgresql when i have to display data using jqgrid/JSP via Json. The project needs to display data from various table in single JSP page as well ...
2
votes
4answers
146 views

encrypt a properties file for Ibatis

I have a properties file containg the database username/password which i used it to manage ibatis connection with the database. What is the best way to encrypt this properties file to be secure. ...
2
votes
1answer
285 views

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 by an IN clause. The SQL looks something like: SELECT * FROM employees WHERE ...
2
votes
1answer
220 views

How to map a myBatis result to multiple objects?

Is it possible in myBatis 3 to map a single result to multiple objects, ensuring that the objects all reference the same instance? Is there an example of this I could reference? Updated to add more ...
2
votes
0answers
159 views

Getting update counts for a batch insert/update in ibatis

Using the latest version of mybatis. Have a mapper and DAO. Doing batch inserts. Its working but I want to know how many rows were inserted. In JDBC I can get the update counts as an int array .. How ...
2
votes
0answers
155 views

How can I create bi-directional mappings with MyBatis 3.0.5?

Say I have two domain objects and a mapper interface. class Person { int id; List<Problem> problems = new ArrayList<Problem>(); } class Problem { int id; Person person; } ...
2
votes
1answer
407 views

How to return key after insert using MyBatis when the id/uuid as is stored as binary?

we currently have triggers in our database that hand out uuid for every record that i insert. When i am inserting records with mybatis i would like to get that uuid back instead of the numbers of rows ...
2
votes
2answers
338 views

MyBatis executing multiple sql statements in one go, is that possible?

i was wondering if it is possible to execute multiple sql statements in 1 go. For example the scenario that i want to delete rows from multiple tables, is there a way i can do things like.. ...
2
votes
1answer
146 views

Deploying a Client/Server application on Spring MVC

I have one stand alone client server application. I want to move it to Spring MVC so that it can be deployed on some server (eg. TOMCAT etc). I've referred to many Spring MVC tutorials etc but ...
2
votes
1answer
152 views

Using Spring,MyBatis for a client server model

As per my earlier post i was able to build a multi-threaded server client model for my application. Now i have to migrate it to Spring (Core not MVC as of now). Can anybody please suggest again from ...
2
votes
2answers
302 views

How can I integrate Oracle's row level security with MyBatis?

A project I am working on uses and Oracle database with row level security. I need to be able to invoke call DBMS_APPLICATION_INFO.SET_CLIENT_INFO('userId'); before I can execute any other SQL ...
2
votes
2answers
917 views

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 want to create any POJO/DataMapper at all. Any URL example would be welcomed.
2
votes
2answers
1k views

ORA-08103: object no longer exists: This error is occuring for Oracle Procedure returning Refcursor from MyBatis

When calling a Stored Procedure in Oracle returning refcursor I am getting an error 2011-05-10 03:36:23 DirtiesContextTestExecutionListener [DEBUG] After test method: context [[TestContext@3a363a36 ...
2
votes
1answer
993 views

MyBatis mapping properties to database columns when inserting & updating (using annotations)

I'm just starting to learn MyBatis and I'm wondering, when I'm creating insert or update queries, is there a way that I can make property names a bit more friendly to refactoring? I'll explain in ...
2
votes
1answer
327 views

mybatis.net or nhibernate for a new .net web application with SQL backend

I'm having a big to-ORM or not-to-ORM design dilemma and would really appreciate your answer and reason to my question below hence I have tried to include as much background as relevant. The ...
2
votes
1answer
334 views

Problem deserializing objects from cache on MyBatis 3/Java

So I'm working on a side project using MySQL/MyBatis3/Tomcat. I'm currently working on turning on caching in MyBatis. When I first tried to turn on caching, I got exceptions due to the fact that my ...
2
votes
1answer
556 views

Mapping Composition in MyBatis

I'm having some trouble with a mapping in MyBatis for Java and would appreciate some help. My class structure is as below: //Getters/setters omitted for clarity class Foo { int id; Bar bar; } ...
2
votes
3answers
787 views

A little bit diffrent GWT/GXT persistent approach

I'm newbie with GWT/GXT and I'm looking for best persistence way for my future apps. I was considering many variants of doing that so I decided to draw a graph here: So my conclusions are: 1) ...
2
votes
2answers
815 views

Need help making MyBatis work with a terrible database design

So i'm working on a project (JSF2, Spring3 Core, MVC, Webflow, MyBatis3, RichFaces, and a legacy Oracle 10g). The source of all of my trouble's has to do with the design of the database. The problem ...
2
votes
1answer
989 views

Persist collection in object with MyBatis

I have POJO classes: class Ticket { private int id; private double cost; private Date time; private List<Place> places; // Getters and setters here } class Place { ...
2
votes
3answers
2k views

How to return ids on Inserts with mybatis in mysql with annotations

See this related question for Postgres. For some reason, the solution doesn't work for me - the return value of the insert statement is always "1". See this other question for an XML based solution. ...
2
votes
1answer
1k views

“Type interface is not known to the MapperRegistry” exception using mybatis

I'm setting up mybatis using annotations, and getting this helpful exception org.apache.ibatis.binding.BindingException: Type interface org.foo.Bar is not known to the MapperRegistry ...
2
votes
2answers
1k views

MyBatis: How to return the ID of the inserted object under Postgres?

I've got a postgres table where the ID is defined as bigserial. How can I use @Insert and get back the id of the inserted entity? I am expecting the mapper method to either return the id or populate ...
2
votes
2answers
410 views

iBatis 3 not backward compatible?

Does anyone know why the API is not backward compatible? Is it still thread safe? Anyone know of any migration document from 2.x to 3.x?
1
vote
1answer
18 views

Including an entity in an myBatis mapper file

I'm upgrading from iBatis 2.x to myBatis 3.0.6 and I have a mapper file which includes an external entity as follows: <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...
1
vote
2answers
26 views

Passing multiple arguments into a SELECT without using a complex object

I am trying to pass in startSequenceId, stopSequenceId, orderNumber into the SQL map, however, i don't wish to use a typed object, i.e. parameterType="com.abc.Order", can i do so? <select ...
1
vote
1answer
40 views

How use Hibernate and MyBatis in the same application

I want to build an application using Hibernate and MyBatis integrate with Spring. In the prototype i've got to run them, but not toghether. My application context of Spring is: <?xml ...
1
vote
1answer
49 views

Mybatis insert fails with no exception

I am trying to insert a file from a java application into a mysql table. The call to the mapper completes without any exception, but at the end I don't find any records inside the table. Maybe ...
1
vote
1answer
78 views

How can I insert multiple values in a single query using MyBatis annotations?

Are there any examples for inserting a collection into a Database (MySQL) using a single query using MyBatis annotations and not the XML? I have the following query in a MyBatis DAO. ...
1
vote
2answers
61 views

How to start myBatis implemention with spring?

I want to work with myBatis. I have read MyBatis-3-user-guide. Now i am trying to implement it. Recently i have learned spring. So it is difficult for me to implement it. So i need some helpful ...
1
vote
0answers
90 views

Get column-property mapping relationship in MyBatis

I need to do some dynamic sql mapping in the MyBatis, in order to let it do something like below for each column: switch (filter.FilterType) { case FilterType.BeginsWith: ...
1
vote
1answer
96 views

Oracle order by different

I have a table in an Oracle Database like this ID | LABEL ------------ 1 | label alpha 1 2 | label alpha 2 3 | label alpha a when I do a select in an application like Squirrel like ...
1
vote
1answer
146 views

using custom types in MyBatis/Spring

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 ...
1
vote
0answers
60 views

MyBatis/Spring - 2 Datasources MyBatisSystemException - Ambigous mapped statements

I have configured two datasources in my Spring/MyBatis application. I don't get any error while startup (its reading the Mapper XML and interface). But when invoking the method, its throwing the ...

1 2 3 4