Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any lightweight JDBC wrapper with these features?

Tags:

java

jdbc

  • Named parameters, just like JdbcTemplate from Spring
  • XML configuration for JDBC connection settings
  • XML configuration for queries. Something like Hibernate <sql-query>. See Named SQL queries for an example

I'm thinking of trying to build my own, but I thought I'd ask here, maybe it's already been done.

Obviously I don't want to use neither an ORM nor JdbcTemplate.

like image 942
Bogdan Avatar asked Oct 10 '22 09:10

Bogdan


1 Answers

What about MyBatis?

a busy cat
(source: mybatis.org)

like image 169
Tomasz Nurkiewicz Avatar answered Oct 13 '22 09:10

Tomasz Nurkiewicz