Tagged Questions

iBatis is an object-relational mapping framework for Java. It uses XML descriptors to bridge SQL queries and Java objects. Apache retired iBatis in June 2010 and it is now developed under the 'mybatis' name.

learn more… | top users | synonyms

33
votes
11answers
10k views

Hibernate, iBatis, JEE or other Java ORM tool

We're in the process of planning a large, enterprise application. We're focusing our efforts on evaluating hibernate after experiencing the pains of J2EE. It looks like the new JEE API is simpler. ...
20
votes
1answer
1k views

Stored procedure output parameter set back to POJO by iBATIS

I'm using iBATIS to call a Stored Procedure on MSSQL Server, the input parameters are properties on a POJO that is put to the map: Map<String, Object> saveMap = new HashMap<String, ...
10
votes
1answer
668 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 ...
9
votes
3answers
2k views

Hibernate Vs iBATIS

For our new product re-engineering, we are in the process of selecting the best framework from Java. As the consideration is to go for database agnostic approach for model, we are working on options ...
8
votes
2answers
597 views

iBatis not populating object when there are no rows found

I am running a stored procedure that returns 2 cursors and none of them have any data. I have the following mapping xml: <resultMap id="resultMap1" class="HashMap"> <result ...
7
votes
5answers
237 views

How to understand Open Source projects/libraries?

There are few open source projects/APIs/libraries that we use in our project (Spring, Struts, iBatis etc.) and I want to understand their design and how they work internally. What is the best way to ...
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
6k views

Howto return ids on Inserts with Ibatis ( with RETURNING keyword )

I'm using iBatis/Java and Postgres 8.3. When I do an insert in ibatis i need the id returned. I use the following table for describing my question: CREATE TABLE sometable ( id serial NOT NULL, ...
5
votes
4answers
519 views

ORM in the realworld

I am begining a new project that i think will last for some years. Am in the point of deciding the ORM framework to use (or whether to use one at all). Can anyone with experience tell me whether orm ...
5
votes
1answer
178 views

Is there active development going on IBatis.Net DataMapper?

Is there active development going on IBatis.Net DataMapper? Do they have version for .Net 3.5. I saw lots of activity on iBatis Java DataMapper as they are planning to release iBatis3 with annotation ...
5
votes
4answers
6k views

How to use an IN clause in iBATIS?

I'm using iBATIS to create select statements. Now I would like to implement the following SQL statement with iBATIS: SELECT * FROM table WHERE col1 IN ('value1', 'value2'); With the following ...
5
votes
3answers
1k views

Would you use NHibernate for a project with a legacy database, which is partly out of your control?

For me the answer is currently: No, I would use iBatis, because NHibernate is a pain, when the database model and the object model are not in synch. If I don't have full control over the database I ...
4
votes
1answer
129 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
1answer
458 views

How can I efficiently map complex collection properties in ibatis 2.3.4

I have a domain object which represents a 1:n relationship between database tables. public class ObservationWithData { private Observation observation; private Map<Integer,ElementValue> ...
4
votes
2answers
821 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?
4
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
282 views

MySQL Stored procedure: search for a variable number of strings

I need a some stored procedure that called like: search('foo bar') makes a search similar to: SELECT FROM A, B WHERE A.B_ID = B.ID AND (A.f1 LIKE '%foo%' OR A.f2 LIKE '%foo%' OR B.f3 LIKE '%foo%') ...
4
votes
2answers
1k views

iBatis multiple parameter mapper method

Let's say I have a query getUser with two parameters - userName and password. I'd like to have a mapper method looking like this: public UserBean getUser(String userName, String password); Is there ...
4
votes
6answers
4k views

iBatis get executed sql

Is there any way where I can get the executed query of iBatis? I want to reuse the query for an UNION query. For example: <sqlMap namespace="userSQLMap"> <select id="getUser" ...
4
votes
4answers
2k views

Can I annotate an inherited final property with @Autowire?

Resolution: No I'm no longer extending the original parent. Original: Is there a way to annotate an inherited final setter method? I am extending a class which has a final setter which I would like ...
4
votes
3answers
2k views

ibatis return values

I'm currently using ibatis to returns some pojos and everything works great. My question is: I have to return 1 row from a table, just like 3 fields, and I don't want to create a pojo for it. I just ...
4
votes
7answers
17k views

Oracle SQL DATE conversion problem using iBATIS via Java JDBC

I'm currently wrestling with an Oracle SQL DATE conversion problem using iBATIS from Java. Am using the Oracle JDBC thin driver ojdbc14 version 10.2.0.4.0. iBATIS version 2.3.2. Java ...
4
votes
4answers
12k views

Pass and return custom array object in ibatis and oracle in java

I've looked around for a good example of this, but I haven't run into one yet. I want to pass a custom string array from java to oracle and back, using the IBATIS framework. Does anyone have a good ...
3
votes
1answer
58 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
165 views

How to use a parameterized class as resultClass in iBATIS

We have the following class public class TemporalData<T> { private T data; private String opCode; private Date updateTime; // getters, setters } public class Employee { ...
3
votes
1answer
886 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
638 views

iBatis ResultMaps: The column name <…> was not found in this ResultSet

Given a ResultMap for an iBatis select query, it seems obligatory that all columns (that are mapped to properties in the ResultMap) are actually part of the SQL query. But that's a bit annoying if ...
3
votes
3answers
412 views

Scala Database Mapping Library Similar to iBATIS

I've been using iBATIS for years and have been very happy with it. iBATIS is very good about letting one write their own SQL while handling the mundane work of mapping data to/from the ...
3
votes
3answers
164 views

sql: how to improve this statment

I have the following sql statement that I need to make quicker. There are 500k rows, and I an index for 'HARDWARE_ID', but this still take up to a second to perform. Does anyone have any ideas? ...
3
votes
1answer
359 views

Spring: separate datasource for read-only transactions

Thanks for reading this. I have 2 MySQL databases - master for writes, slave for reads. The perfect scenario I imagine is that my app uses connection to master for readOnly=false transactions, slave ...
3
votes
3answers
473 views

how to resolve design issue in my App using Spring + iBatis

We use Spring + iBatis in all of our DAO's to fetch data from Stored Procedures. There are two main JNDI connections. one going to the datawarehouse and another going to livedb. recently lot of ...
3
votes
2answers
2k views

how to do Ibatis version of show sql

Is there an Ibatis setting to view the generated SQL like how Hibernate has show_sql=true? thanks
3
votes
3answers
170 views

JUnit test failing - complaining of missing data that was just inserted

I have an extremely odd problem in my JUnit tests that I just can't seem to nail down. I have a multi-module java webapp project with a fairly standard structure (DAO's, service clasess, etc...). ...
3
votes
1answer
2k views

Ibatis startBatch() only works with SqlMapClient's own start and commit transactions, not with Spring-managed ones

I'm finding that even though I have code wrapped by Spring transactions, and it commits/rolls back when I would expect, in order to make use of JDBC batching when using Ibatis and Spring I need to use ...
3
votes
2answers
3k views

iBatis 3 - JNDI configuration example

The iBatis framework has been significantly tweaked between versions 2 & 3, so much that even the config file (now often referred to as MapperConfig.xml) is different. That being said, there are ...
3
votes
0answers
168 views

Indefinite flushInterval in iBATIS

Does anyone know what the behavior of an iBATIS cacheModel is when flushInterval is left out, say if the cache type is MEMORY? I'm hoping that it simply leaves the cached results in memory ...
3
votes
1answer
237 views

Ingres connection on an IIS deployed site

I have a .net 2.0 app being hosted on IIS, that connects to a Ingres DB. The connection uses iBatis with an ODBC driver to connect to an ingres database being protected behind an installation ...
3
votes
1answer
1k views

How to map multiple records using SqlMap in Ibatis

I am just getting into ibatis with SqlMap for the first time and I have run into a problem. I have figured out how to insert, delete, update, and select single records. Now however I am trying to ...
3
votes
3answers
2k views

JAVA Swing client, Data Access to Remote Database; Ibatis

I've got a Java client that needs to access a remote database. It is the goal to hide database credentials from the user and not hardcode any credentials within the code. Therefore, the database ...
3
votes
6answers
3k views

Accessing Datasource from Outside A Web Container (through JNDI)

I'm trying to access a data source that is defined within a web container (JBoss) from a fat client outside the container. I've decided to look up the data source through JNDI. Actually, my ...
2
votes
4answers
122 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
197 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
1answer
74 views

Does iBatis have any analog of Hibernate's `hbm2ddl` for integration testing with in-memory database?

I'm considering adding integration tests to a Java-Struts-Spring-iBatis-Oracle legacy application. In the past I've used HSQL as an in-memory database for integration tests for applications that used ...
2
votes
5answers
777 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 ...
2
votes
2answers
792 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
0answers
24 views

Do any techniques exist for visualizing (or at least documenting) iBatis Mappings?

For those who have used iBatis - what techniques or tools do you typically use to visualize the data mappings between declarative XML, database tables / procedures, and Java objects? I haven't found ...
2
votes
1answer
567 views

oracle collection as function return type

We have a database function to cache sequence values. It accepts a sequence object name and a fetch size, increments the sequence and return the values. The return type is a oracle collection. Here ...
2
votes
1answer
908 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
1k views

iBATIS - Defining 'javaType' and 'jdbcType'

While defining the resultMap in iBatis, it provides an option to set the javaType and jdbcType for each property to column mapping. e.g. <resultMap id="employee" ...
2
votes
1answer
525 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; } ...

1 2 3 4 5 8