Ibatis 1 « Database « Spring Q&A





1. How to unit test a DAO that is extending SqlMapClientDaoSupport    stackoverflow.com

Spring DA helps in writing DAOs. When using iBATIS as the persistence framework, and extending SqlMapClientDaoSupport, a SqlMapClient mock should be set for the DAO, but I can't do it. SqlMapClientTemplate ...

2. How to pass global properties in ibatis    stackoverflow.com

I'm developing a Spring MVC application using ibatis for the database interaction layer. I'd like to be able to set the name of the database via a properties file in my ...

3. Can I annotate an inherited final property with @Autowire?    stackoverflow.com

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 ...

4. Oracle - connection Pooling with spring framework    stackoverflow.com

We are trying to implement Oracle connection pooling with the help of Spring Framework. We are using DBCP connection pooling method. However the integration between DBCP and spring doesn't go down ...

5. Use of Non-Company approved 3rd party software libraries    stackoverflow.com

Is it unethical to use a third party library/framework (spring/ibatis) in your app anyway, even though you've been told it will take too long to approve and you can just make ...

6. Integrating Spring 2.5 with Ibatis 3    stackoverflow.com

Does anyone know of a way to integrate the new Ibatis with the current Spring 2.5? I'm exploring pulling it in to a project and was curious if anyone had done ...

7. converting J2EE App from Sql to Oracle - suggestions with effecient approach    stackoverflow.com

We have a J2EE app built on Struts2+spring+iBatis; not all DAO's use iBatis...some code still uses the old JDBC approach of interacting with Database. All our DAO's call Stored Procedures, we ...

8. how to integration test a DAO built with spring + iBatis    stackoverflow.com

I asked a question, title of which might have been misleading so I'm going to try to ask the question again with much detailed stuff. (i know question seems long ...

9. is this possible to do with iBatis + spring    stackoverflow.com

usual idiom of using ibatis with spring support is following. Or this is how I'm doing it. please let me know if it can be done a better way? beans xml:

<bean ...





10. Ibatis2 and test context    stackoverflow.com

I'm having a stupid configuration issue with Ibatis in my Spring project. Please don't jump on me about how all this was setup, I'm just following the "in house project structure ...

11. Ibatis : Is there a way of adding a rowhandler in an Ibatis resultmap subselect within the sqlmap xml?    stackoverflow.com

I have a two ibatis sql maps that are linked together via a sub select like the simplified example below:

<resultMap id="order" class="Order">
  <collection property="orderLines" ofType="OrderLine" resultMap=�orderLine�/>
</resultMap>
I have an order object ...

12. Lazy initialization of cache with Spring IBatis    stackoverflow.com

We are moving our legacy implementation to Spring IBatis model. I am kind of stuck in modeling these objects in cleaner way using Spring model Lets say I have two classes [ ...

13. How load xml files, in IntelliJ IDEA    stackoverflow.com

IntelliJ not find xml file under sources folder. example) src/net/saltfactory/domain/PersonSqlMap.xml but, If I copy it and past out folder, IntelliJ find xml file example) out/net/saltfactory/domain/PersonSqlMap.xml I hope that don't copy and past XML files ...

14. Using different datasources for particular queries with Spring and IBATIS    stackoverflow.com

I have the requirement of updating an app to use multiple (i.e., two in this case) datasources depending upon the type of query. For instance, use DB1 for reads and DB2 ...

15. Spring + iBatis + Hessian caching    stackoverflow.com

I have a Hessian service on Spring + iBatis working on Tomcat. I'm wondering how to cache results... I've made the following config in my sqlmap file:

<sqlMap namespace="Account">

<cacheModel id="accountCache" type="MEMORY" readOnly="true" serialize="false">
 ...

16. how to resolve design issue in my App using Spring + iBatis    stackoverflow.com

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 ...





17. Ibatis: Define a getter as a property on a result    stackoverflow.com

Can I define a getter as a property on a result in Ibatis? like

    <resultMap id=.... class=...>
       <result property="getSomeValue" column="valueColumn"/>

....
I haven't seen ...

18. How to understand Open Source projects/libraries?    stackoverflow.com

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 ...

19. Spring jdbc vs iBatis    stackoverflow.com

For Spring 2.5.6 and above the two reasons that I can think of for choosing spring jdbc are :

  1. BeanPropertySqlParameterSource - for insert/update
  2. ParameterizedBeanPropertyRowMapper - for select
These two give you the power of basic orm ...

20. manageable way to handle exceptions in java    stackoverflow.com

I am trying to come up with a manageable way to handle exceptions in a DAO. Typically a method in my DAO looks like this:

public ArrayList fetchColors (String id)
{
  ...

21. iBatis, spring, how to log the sql that is executed?    stackoverflow.com

I am using iBatis with spring framework. I want to log the sql that iBatis executes when I say something like

Employee e = (Employee) getSqlMapClientTemplate().queryForObject("emp_sql", emp);
The above line will look ...

22. how to resolve java.io.FileNotFoundException    stackoverflow.com

I am using Spring, ibatis for ORM. My app-config.xml look like

<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
    destroy-method="close">
    <property name="driverClassName" value="com.mysql.jdbc.Driver" />
    <property name="url" value="jdbc:mysql://192.168.10.50/lmexdb_v1" ...

23. How to reslove com.ibatis.common.xml.NodeletException: Error parsing XML    stackoverflow.com

I am using iBatis for ORM of application. My sqlmapconfig.xml file is as below:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sqlMapConfig PUBLIC "-//ibatis.apache.org//DTD SQL Map Config 2.0//EN" "http://ibatis.apache.org/dtd/sql-map-config-2.dtd">
<sqlMapConfig>
<sqlMap resource="file:com${file.separator}platysgroup${file.separator}lmexserver${file.separator}mobile${file.separator}dao${file.separator}ibatis{file.separator}lmexusermobileinfo.xml" />
</sqlMapConfig>
I need to use file separator ...

24. How to test SQL dynamic queries?    stackoverflow.com

My applications are Spring/iBatis (2.3) based. I usually write a lot of dynamic queries in my sqlMaps and I'd like to test my generated SQL queries to avoid any syntax errors. ...

25. is it possible for custom field mapping using ibatis 2.3? e.g. FACTOR_INFO001..FACTOR_INFO200 map to List    stackoverflow.com

I need a custom mapping using ibatis-sqlmap 2.3.4.726 and spring 2.5.6.SEC01. class: public class Rosen { private String id; private List factor_info; } sql: select ID, FACTOR_INFO001, FACTOR_INFO002, ..., FACTOR_INFO200 from ...

26. how do configure smart gwt?, i have tried it, but it si giving problems    stackoverflow.com

How do i configure smart gwt ,spring and ibatis to work together? can someone provide me an example on how to go about it.I will appreciate ur help ...

27. How do i configure smart gwt ,spring and ibatis?    stackoverflow.com

How do i configure smart gwt ,spring and ibatis to work together? can someone provide me an example on how to go about it.I will appreciate ur help

28. Spring-iBatis create database dynamically    stackoverflow.com

I am new to spring-iBatis. I have a requirement to create a database dynamically from my application. The database is MySql. I have seen that there are methods for insert,update and ...

29. one-to-many insert with iBATIS    stackoverflow.com

I have got the type Word with the property Topics which is a List object. I have two tables in the database: Words and Topics. I want write a word in ...

30. Spring AOP RegexpMethodPointcutAdvisor not working as expected    stackoverflow.com

i'm using an Spring aop MethodBeforeAdvice to execute a PL/SQL function before every method that not starts with "comprueba" or "set" in my spring beans. I have chosen RegexpMethodPointcutAdvisor to describe ...

31. Spring + Ibatis tutorial?    forum.springsource.org

I'll be developing a web app using Spring MVC and Ibatis. However, I am new to both these frameworks. Any recommendations as to the best approach to learning these? I was ...

32. Paging with iBATIS    forum.springsource.org

Hi, i've been looking for a way to implement paging in my application using iBATIS in an efficient way. This means that fetching all the records an apply paging with a ...

33. Exception IBATiS lazy loading 1:M    forum.springsource.org

Exception IBATiS lazy loading 1:M Hello World, I'm getting this exception when I enable lazy loading on SQLMaps and try to access the M side of a 1:M relationship. If I ...

34. Mybatis 3 + IBatis 2 + Spring    forum.springsource.org

Mybatis 3 + IBatis 2 + Spring Howdy, I have seen conflicting information about whether Spring will have support for Mybatis in 3.1. We currently have *a lot* of Ibatis 2-based ...

35. iBatis ResultMap in a List    forum.springsource.org

36. iBATIS 2 Support - NoClassDefFoundError    forum.springsource.org

37. Spring 1.1 and iBATIS 2.0.6    forum.springsource.org

Spring 1.1 and iBATIS 2.0.6 Hi everyone. I am wondering if anyone is having any success using the Spring DAO framework with the latest release of iBATIS 2.0.6? I am starting ...

38. Ibatis issue:Can't Complex Property Support Set Immediately!    forum.springsource.org

Ibatis issue:Can't Complex Property Support Set Immediately! :oops: It's a Ibatis problem. I have posted the same one in the forum of ibatis.org. But I do want to post here, because ...

39. Ibatis modify java.sql.connection    forum.springsource.org

Ibatis modify java.sql.connection I am using Ibatis for accessing data on a Sybase database server. My problem is that Sybase rather than having multiple tablespaces has multiple databases within the same ...

40. How to hot swap datasource with ibatis?    forum.springsource.org

Hi, i new in this forum :P I use the approach in http://static.springsource.org/sprin...tml#orm-ibatis (spring+ibatis) Each DAO is associated with one datasource, but i have two database (differents enterprises) then, i would ...

41. Boolean properties and iBatis SqlMaps    forum.springsource.org

Boolean properties and iBatis SqlMaps Hi all, Does anyone know whether it is possible to map a char column in the database which has values of 'Y' and 'N' to a ...

42. Weird exception for Spring & iBatis database insert    forum.springsource.org

Nov 9th, 2004, 12:35 PM #1 bill View Profile View Forum Posts Private Message Junior Member Join Date Nov 2004 Posts 4 Weird exception for Spring & iBatis database insert Having ...

43. ibatis problem inserting null value for Date type    forum.springsource.org

ibatis problem inserting null value for Date type Encountered a strange problem with iBATIS 1.3. When a java.util.Date bean field is null, the binding to the mapped statement fails. I receive ...

44. Spring iBATIS configuration problem    forum.springsource.org

Spring iBATIS configuration problem Hi, I am setting up project framework based on Spring an iBATIS2. I am new to these technologies and I am stuck with apparently quite simple problem. ...

45. calling strored procedures with ibatis    forum.springsource.org

46. Ibatis, SqlMapClientDaoSupport & list    forum.springsource.org

With the method queryForObject we can provide to Ibatis a resultObject, created for example, by the applicationContext. I would like to do the same with a list or at least telling ...

47. Spring + iBAtis 2.0    forum.springsource.org

Dec 18th, 2004, 11:22 AM #1 pdemilly View Profile View Forum Posts Private Message Junior Member Join Date Oct 2004 Location Laguna Beach, CA Posts 16 Spring + iBAtis 2.0 I ...

48. How to use SQLErrorCodeSQLExceptionTranslator in Ibatis?    forum.springsource.org

How to use SQLErrorCodeSQLExceptionTranslator in Ibatis? Hi all, I am using Spring Final 1.1.1, IBatis 2.0.8 with Oracle 9 db. Currently what I want to achieve is to get the ora ...

49. Removal of the iBatis sql-map-config file    forum.springsource.org

Is there any way to configure Spring (or maybe iBatis) to search a classpath for the sql-map files instead of specifying each one in a sql-map-config file? I think this type ...

50. Spring + iBATIS + lazy-loading: NullPointerException    forum.springsource.org

Jan 21st, 2005, 08:23 AM #1 pmag View Profile View Forum Posts Private Message Junior Member Join Date Jan 2005 Posts 4 Spring + iBATIS + lazy-loading: NullPointerException Hello, i'm using ...

51. Ibatis update issue    forum.springsource.org

Ibatis update issue Hi all, just a query regarding updating multiple tables in ibatis. For our project we want to be able to keep transparency between the dao code and the ...

52. Spring + iBatis - out of memory!!    forum.springsource.org

Feb 7th, 2005, 10:52 AM #1 Teseo View Profile View Forum Posts Private Message Junior Member Join Date Dec 2004 Posts 8 Spring + iBatis - out of memory!! Hi, Im ...

53. Problems with Spring and Ibatis    forum.springsource.org

Feb 15th, 2005, 03:11 PM #1 trilcejf View Profile View Forum Posts Private Message Junior Member Join Date Jan 2005 Location Barcelona Posts 5 Problems with Spring and Ibatis Hi all, ...

54. iBatis returning AOP proxy instead of target class?    forum.springsource.org

iBatis returning AOP proxy instead of target class? I have a simple interface Example with an implementing class called ExampleImpl. I wanted to add some AOP functionality to the class and ...

55. Utilize Spring's JDBC Framework or iBATIS    forum.springsource.org

Utilize Spring's JDBC Framework or iBATIS I have been reading through the Spring Developer's Guide, J2EE Development without EJB, Spring in Action, and all the iBATIS documentation. I really like much ...

56. Why is iBATIS startBatch() and executeBatch() missing?    forum.springsource.org

Why is iBATIS startBatch() and executeBatch() missing? Hi, I'm just wondering why the startBatch() and executeBatch() methods are missing from the SqlMapClientOperations interface (and therefore SqlMapClientTemplate) for iBATIS support? The only ...

57. iBatis TestCase    forum.springsource.org

iBatis TestCase I am about to get my feets wet with the iBatis DAO framework. Therefore I need to create test-cases. I would like to use HsqlDB for unit-testing and MySQL ...

58. Problem with Spring and iBatis    forum.springsource.org

Problem with Spring and iBatis I get this error when I try to access the application in Tomcat: java.lang.IllegalArgumentException: No SqlMapClient specified org.springframework.util.Assert.notNull(Assert.jav a:91) org.springframework.orm.ibatis.SqlMapClientTemplat e.execute(SqlMapClientTemplate.java:139) org.springframework.orm.ibatis.SqlMapClientTemplat e.queryForObject(SqlMapClientTemplate.java:205) db.SqlMapUserDao.getUser(SqlMapUserDao.java:23) web.DemoController.handleRequest(DemoController.ja va:35) ...

59. Checklist for Oracle CLOBs with iBATIS SqlMaps? [SOLVED]    forum.springsource.org

May 16th, 2005, 01:51 PM #1 Bubba Puryear View Profile View Forum Posts Private Message Junior Member Join Date Apr 2005 Location Morrisville, North Carolina (USA) Posts 20 Checklist for Oracle ...

60. Load multiple iBatis SqlMap configuration files    forum.springsource.org

Load multiple iBatis SqlMap configuration files Hello, I've got following two sqlmaps configuration files: module-x-file: Code: module-y-file: Code:

61. directly populating a JCombobox with an IBATIS resultmap    forum.springsource.org

hi, this topic is between Ibatis and RCP. but i choose to post it there. i'm trying to populate a Jcombobox directly with the result of an Ibatis statment. the Jcombobox ...

62. Spring+iBATIS configuration problem    forum.springsource.org

Spring+iBATIS configuration problem I'm trying a hello world type example with spring and iBATIS. I'm using spring 1.2.1 and ibatis 2.1.0.565. I've gone through the class names and dtds. I'm missing ...

63. Spring JDBC vs IBATIS - What are the pros/cons?    forum.springsource.org

All, I have an existing DB schema that is to complicated to map with hibernate. I am looking to choose between Spring JDBC and IBATIS. I am struggling with the differences. ...

64. listing ibatis statement mappings    forum.springsource.org

listing ibatis statement mappings is there a way to list all the ibatis statements from a given XML map file? I'm getting the following exception: Code: com.ibatis.sqlmap.client.SqlMapException: There is no statement ...

65. Unable to register out parameter : spring + ibatis    forum.springsource.org

Unable to register out parameter : spring + ibatis I am trying to call an Oracle function using ibatis. while doing so i get the following error - --- Check the ...

66. How to use Ibatis in spring framework    forum.springsource.org

Hi, I have tried to find the PetClinic spring sample application, and I couldn't find it. Do you now other sample or where can I find this sample. Thanks Rodolfo

67. Strange iBatis error... parsing XPath '/sqlMapConfig/sqlMap'    forum.springsource.org

Oct 20th, 2005, 02:26 PM #1 Ibexx View Profile View Forum Posts Private Message Junior Member Join Date Feb 2005 Posts 11 Strange iBatis error... parsing XPath '/sqlMapConfig/sqlMap' Hi, I have ...

68. [ibatis]reload sql map!    forum.springsource.org

[ibatis]reload sql map! I'm using sqlmap of iBatis instead of Spring DAO. Of course, I use Spring framework for core container. I think ibatis is so efficient OR-Mapper. it decrease coding ...

69. spring and ibatis    forum.springsource.org

Nov 30th, 2005, 07:20 AM #1 elias View Profile View Forum Posts Private Message Junior Member Join Date Nov 2005 Posts 1 spring and ibatis I'm using spring 1-2-5 and ibatis ...

70. Ibatis problem    forum.springsource.org

Ibatis problem when I use spring_ibatis encounter problem,error message as follows: Exception in thread main java.lang.IllegalArgumentException: No SqlMapClient specified at org.springframework.util.Assert.notNull(Assert.jav a:90) at org.springframework.orm.ibatis.SqlMapClientTemplat e.execute(SqlMapClientTemplate.java:155) at org.springframework.orm.ibatis.SqlMapClientTemplat e.executeWithListResult(SqlMapClientTemplate.java: 204) at org.springframework.orm.ibatis.SqlMapClientTemplat ...

71. Sample for Spring + iBatis 2.0    forum.springsource.org

72. HttpInvoker + Ibatis Crash    forum.springsource.org

Jan 26th, 2006, 05:24 AM #1 agharta View Profile View Forum Posts Private Message Junior Member Join Date Jun 2005 Location Italy Posts 16 HttpInvoker + Ibatis Crash Hi all, I've ...

73. spring-ibatis    forum.springsource.org

spring-ibatis Hi, I have one query: I am using spring ibatis in my application I checked all the xml files under WEB-INF folder. Whille deploying my application I got error, Caused ...

74. Spring iBatis Oracle    forum.springsource.org

Hi! How can i insert large BLOB in an Oracle's db using iBatis? I'm using Oracle 9i and ojdbc14.jar. With small BLOB, it works fine, but with big, i get this ...

75. iBatis problem    forum.springsource.org

iBatis problem Hello, good afternoon. I ran into the following problem and i am not able to find my way out. having, public void delete(DomainEntity entity) throws DataAccessException { if (entity ...

76. connection problem with iBatis    forum.springsource.org

connection problem with iBatis Hi, I'm having a problem with iBatis and i can't find what it is..... I'm working with Weblogic 8.1 and Informix 7.3...... and every time i want ...

77. Need Help with Ibatis and spring    forum.springsource.org

Need Help with Ibatis and spring Hi I am using Spring and Ibatis for database access. I need a solution for defining custom type handler for entire resultset. for example I ...

78. Need help.. facing problem integrating Ibatis....    forum.springsource.org

Need help.. facing problem integrating Ibatis.... Hi... I have been trying to integrate ibatis into my application... .using struts and spring for front and middle tier... however whenever I try to ...

79. IBatis with multiple databases    forum.springsource.org

In my application I need to access two databases. I am using spring + IBatis 2.X. I am able to configure the application with one database. How do I configure multiple ...

80. Execute straight SQL with Ibatis?    forum.springsource.org

What's the simplest way of executing a bit of straight SQL with Ibatis (no objects or mappings involved)? It seems I have to use getSqlMapClientTemplate().execute() with an anonymous SqlMapClientCallback, but I'm ...

81. IBatis: SqlMapException: There is no statement named ...    forum.springsource.org

May 26th, 2006, 01:14 AM #1 hash View Profile View Forum Posts Private Message Junior Member Join Date May 2006 Posts 2 IBatis: SqlMapException: There is no statement named ... I'm ...

82. Ibatis SqlMap help please    forum.springsource.org

83. How to test lazy loading for ibatis?    forum.springsource.org

How to test lazy loading for ibatis? Hi, I am extending SqlMapClientDaoSupport to implement my DAO class. Now how do I write unit test to convince myself that the lazy loading ...

84. Using multiple datasources in ibatis    forum.springsource.org

Hi all, Just a quick question really, how do i use multiple datasources based on a locale? My initial reaction is to programitcally set the datasource from a custom datasource factory ...

85. Spring/Ibatis DAO    forum.springsource.org

Spring/Ibatis DAO Newbie here. I am looking for some guidance relating to ibatis and spring. Currently I have a working/functional web application that has the DAO written in ibatis and it ...

86. Spring/iBatis Calling Function within Package    forum.springsource.org

Jul 31st, 2006, 10:56 PM #1 hyuan View Profile View Forum Posts Private Message Junior Member Join Date Nov 2004 Posts 15 Spring/iBatis Calling Function within Package I am using spring/iBatis ...

87. Spring/iBatis dealing with Boolean return type    forum.springsource.org

Aug 1st, 2006, 11:40 PM #1 hyuan View Profile View Forum Posts Private Message Junior Member Join Date Nov 2004 Posts 15 Spring/iBatis dealing with Boolean return type I have a ...

88. ibatis 2.2 support    forum.springsource.org

Hi any idea , when spring will support ibatis 2.2 Currently Abator generated classes does not seem to work with spring M2, it fails to parse the SQL mapping files. I ...

89. problems with ibatis and spring..    forum.springsource.org

problems with ibatis and spring.. hi.. i'm trying to integrate ibatis with spring with a simple dao , and using spring-mock for this, my beans are : bean id="ibatis" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> ...

90. iBatis keeps opening up connections    forum.springsource.org

hi.. the following is taken from a class which extends SqlMapClientDaoSupport public SqlMapClient getClient() { return getSqlMapClientTemplate().getSqlMapClient(); } getClient().startTransaction(); getClient().startBatch(); getClient().delete("DeleteCasebyUniqId",new Long(c.getUniqId())); getClient().insert("InsertCase",c); getClient().executeBatch(); getClient().commitTransaction(); i have a loop which keeps ...

91. Get query executed from a Dao of iBatis    forum.springsource.org

92. Wanted: Smallest Spring/IBatis example    forum.springsource.org

I've been looking over some sample code that I found by google searching and looking at books and I'm rather dismayed at the amount of source code I've seen in the ...

93. upgrade to ibatis 2.2 fails    forum.springsource.org

upgrade to ibatis 2.2 fails I have a mature application with a lot of ibatis sql maps that works perfectly with Spring 1.2.6 and ibatis 2.0, on three different databases. In ...

94. desperate - iBatis config problem    forum.springsource.org

Dec 8th, 2006, 04:23 PM #1 tomekpilot View Profile View Forum Posts Private Message Member Join Date Jul 2006 Posts 43 desperate - iBatis config problem Greetings! First at a simple ...

95. serialize problem using iBATIS    forum.springsource.org

serialize problem using iBATIS hi, i have a serialize problem using spring 2.0 and iBATIS 2.1.7 and WebSphere 5.1. i cluster WebSphere. i got this exception. Code: java.io.NotSerializableException: service.IbatisAccessImpl at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java(Compiled ...

96. ibatis with spring commit problem.    forum.springsource.org

ibatis with spring commit problem. I am using ibatis with spring and container is JBoss with informix databse. I have following spring config. Where do I define the connection default commit ...

97. Problem with Deployment in JBoss/Spring/iBatis: BeanCreationException    forum.springsource.org

Problem with Deployment in JBoss/Spring/iBatis: BeanCreationException Hi, I am facing some issues with the deployment of my project in Jboss. I am using Spring/iBatis/MySQL. I am new to these technologies and ...

98. When one-to-one select iBATIS throw NullpointException    forum.springsource.org

Jan 22nd, 2007, 08:08 PM #1 horsefaced View Profile View Forum Posts Private Message Junior Member Join Date Dec 2006 Posts 4 When one-to-one select iBATIS throw NullpointException Today I try ...

99. Ibatis Spring Intregration    forum.springsource.org

Hi, I'm currently looking into the possibility of using Ibatis SQL Maps and the Spring framework for a new project. I've grasped the idea behind Ibatis, but was wondering if anyone ...

100. JBOSS+SPRING+IBATIS [CachedConnectionManager] Closing a connection for you    forum.springsource.org

JBOSS+SPRING+IBATIS [CachedConnectionManager] Closing a connection for you I use jboss4.0.2+spring1.2.8+ibatis2.x+Oracle10g I configured an xa datasource in jboss, everthing configured fine and startup without errors. But when request a function with db ...