Thursday, May 16, 2013

www.mybatis.org site is down

Hi Guys,

UPDATE 2: The site is back up!

UPDATE: Read more details on the mailing list:  http://mybatis-user.963551.n3.nabble.com/DTDs-mybatis-org-downtime-and-you-td4026993.html

This site is mostly used to deliver the MyBatis DTDs and get to this blog.

Note that with the right configuration MyBatis should read the DTDs from the local mybatis jar bundled in your application but we have detected people trying to get DTDs from the wrong URL.

If you are experiencing problems please make sure you are using this exact doctype declarations in your config and mapper files:

<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd">

<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">

Note the url does not have a leading www.

Sorry for the inconveniences!

Tuesday, April 30, 2013

MyBatis Velocity Scripting 1.0 Released

Dear Community,

We would like to announce the release of MyBatis Velocity Scripting 1.0

It is an extension that allows you to use the Apache Velocity scripting language to generate your dynamic SQL queries on the fly.

Treat your SQL scripts as templates, mybatis will apply your parameters, generates the actual sql, bind the jdbc parameters and execute all for you. All templates are precompiled at load time, so they are very fast to execute.

It is very easy, look at the docs:

http://mybatis.github.io/velocity-scripting/

It is available as usual in maven central repository as a jar or a bundle.

Special thanks to Zaher Hammoud for its contributions.

Github: https://github.com/mybatis/velocity-scripting

Sincerely,
The MyBatis Team.

Tuesday, April 2, 2013

MyBatis 3.2.2 Released

Dear Community,

We would like to announce the release of MyBatis 3.2.2

This is mostly a bug fix release with a enhancement aimed to speed up batch executions. Have a look at the details in the tracker.

It is available as usual in maven central repository as a jar or a bundle.

Sincerely,
The MyBatis Team.

Sunday, March 10, 2013

MyBatis 3.2.1 Released

Dear Community,

We would like to announce the release of MyBatis 3.2.1

It is a bug fix release. You can find the detailed list of fixes in the tracker.

It is available as usual in maven central repository as a jar or a bundle.

Sincerely,
The MyBatis Team.

Thursday, February 21, 2013

MyBatis 3.2.0 Released

Dear Community,

MyBatis Team is pleased to announce the release of MyBatis 3.2.0

See the details of this release in the tracker.

It is available in maven central repository as a jar or a bundle.

New features:
- Support for plugable scripting engines.
- Support pluggable bytecode providers & Javassist.
- Cached nested queries.
- Logging improvements.
- More than 40 bug fixes.

Upgrade notes:
- MyBatis 3.2 requires Jdk 1.6 while previous versions required Jdk 1.5.

Se the docs for more details.

Thank your all for your contributions and help!