Search:

Type: Posts; User: mac1929; Keyword(s):

Search: Search took 0.02 seconds.

  1. Looks like you have an old MyBatis version in...

    Looks like you have an old MyBatis version in your classpath.
  2. MyBatis stores the SqlSession as a...

    MyBatis stores the SqlSession as a synchronization in SpringTxManager but does not commit/rollback the JDBC connection. That is done by DataSourceTransaction manager.

    I would try this with...
  3. Replies
    2
    Views
    1,496

    Seems to be related to this: ...

    Seems to be related to this:

    http://code.google.com/p/mybatis/issues/detail?id=524
  4. Hi Raja. Have a look at this ...

    Hi Raja. Have a look at this
    http://groups.google.com/group/mybatis-user/browse_thread/thread/53cd8bcd87984113
  5. Replies
    1
    Views
    1,092

    Hi Craig, Everythink looks fine. A SqlSession...

    Hi Craig,

    Everythink looks fine. A SqlSession is not thread safe, as a Jdbc connection. But MyBatis SqlSessionTemplate is built to be injected an thus it is thread safe.

    So your config should...
  6. Poll: While both tools are amazing there are several...

    While both tools are amazing there are several differences between them.

    Both will let you forget about JDBC api and save lots of code lines and programming errors.

    Both take a query, some...
  7. Replies
    4
    Views
    4,872

    Well, that may sound funny but iBATIS namespace...

    Well, that may sound funny but iBATIS namespace is com.ibatis and MyBatis namespace (now it is no longer at apache) it is org.apache so it won't collide.
  8. Replies
    4
    Views
    4,872

    MyBatis 3 is a full rewrite or iBATIS from...

    MyBatis 3 is a full rewrite or iBATIS from scratch. It is not backwards compatible.

    There are tools than can help you in the migration process. I used this one, and worked fine for me:...
  9. Replies
    1
    Views
    1,420

    seems a XML validation problem. Make sure your...

    seems a XML validation problem. Make sure your DTDs are:

    config:

    PUBLIC "-//mybatis.org//DTD Config 3.0//EN"

    "http://mybatis.org/dtd/mybatis-3-config.dtd"

    mapper:
  10. Replies
    2
    Views
    11,647

    Have a look at MyBatis-Spring library at MyBatis...

    Have a look at MyBatis-Spring library at MyBatis web site:

    http://code.google.com/p/mybatis/wiki/Spring
  11. Replies
    1
    Views
    3,638

    Just to let you know that MyBatis team has...

    Just to let you know that MyBatis team has released MyBatis-Spring 1.0.0-RC2.

    Announcement:
    http://groups.google.com/group/mybatis-user/browse_thread/thread/80fe28ae6937842c

    Download (docs and...
  12. Replies
    0
    Views
    591

    Starting and stopping MDPs

    We have always used EJB for online transactions and MDB for JMS processing.

    On some apps we are moving to Full Spring projects without any J2EE component.

    We use Websphere and it has something...
  13. Replies
    1
    Views
    3,638

    MyBatis 3 + Spring 3

    Just to let you know that MyBatis team has released RC1 based on community contributions:

    http://code.google.com/p/mybatis/downloads/detail?name=mybatis-spring-1.0.0-RC1-bundle.zip
    ...
  14. Replies
    2
    Views
    11,647

    MyBatis team are building some integration code....

    MyBatis team are building some integration code. They expect to have a RC1 soon, mybe in a pair of weeks.
Results 1 to 14 of 15