I am a big fan of Spring JDBC. The reasons are simple -
So I looked for a data mapper. The best solution in this regard is iBatis. It is much simpler and has less learning curve compared to ORM and tries to do limited things. While playing with it I was once again struck by XML meta data hell. This time mapping each SQL with different maps. This could be some XML to maintain in a decently large project. Also it queries database multiple time if I need to populate object graphs. Also my attempts to integrate iBatis 3 with Maven 2 and Spring 3 failed with ClassNotFoundException. Hence my journey with iBatis ended very abruptly. I was looking for a smarter solution, which I could configure very easily, should be very simple, no learning curve, efficient and intuitive.
The solution was in Spring framework, bit of SQL trick and an external super efficient bean manipulation library called JODD - http://jodd.org/doc/beanutil.html
As a first step towards building this simple and smart data mapper, I want to externalize my SQLs. So I introduce an abstract dao support class which does load externalized SQLs from a Spring configuration file. Note I am not using any additional XML file for this. This will again lead same problems as in iBatis. Instead its better to stick to what I know best. Here is the first version of this abstract class.
Listing – AbstractBaseDaoSupport.java
Listing – UserDaoImpl.java
Listing – sql-repository.xml
Listing – applicationContext.xml
- Full control over SQL. I can optimize, tweak and tune them to my free will. Let me think in terms of those tables and not objects.
- Cuts down my DAO code significantly.
- Takes care of all boilerplate code.
- Integrates well with other parts of my application which mostly uses other Spring components.
- Simple and easy to setup and get running at high speed
- Minimal learning curve
public List<User> listUsers() { String SQL_LIST_USER = "SELECT first_name,last_name,email,user_id FROM t_user"; List<Map<String,Object>> users = this.getSimpleJdbcTemplate().queryForList(SQL_LIST_USERS,new HashMap()); List<User> userList = new ArrayList<User>(); User userHolder = null; for(Map<String,Object> user : users) { userHolder = new User(); userHolder.setFirstName((String)user.get("first_name")); userHolder.setLastName((String)user.get("last_name")); userHolder.setUserCode((String)user.get("email")); userHolder.setUserId((Integer)user.get("user_id")); userList.add(userHolder); } return userList; }There is significant redundant code here. If you notice carefully, if a column name changes this code will lead to errors. You may consider this mapping and listing in a row mapper, but still you need to write this code and unnecessarily add new classes per such list method for Spring JDBC callbacks.
So I looked for a data mapper. The best solution in this regard is iBatis. It is much simpler and has less learning curve compared to ORM and tries to do limited things. While playing with it I was once again struck by XML meta data hell. This time mapping each SQL with different maps. This could be some XML to maintain in a decently large project. Also it queries database multiple time if I need to populate object graphs. Also my attempts to integrate iBatis 3 with Maven 2 and Spring 3 failed with ClassNotFoundException. Hence my journey with iBatis ended very abruptly. I was looking for a smarter solution, which I could configure very easily, should be very simple, no learning curve, efficient and intuitive.
The solution was in Spring framework, bit of SQL trick and an external super efficient bean manipulation library called JODD - http://jodd.org/doc/beanutil.html
As a first step towards building this simple and smart data mapper, I want to externalize my SQLs. So I introduce an abstract dao support class which does load externalized SQLs from a Spring configuration file. Note I am not using any additional XML file for this. This will again lead same problems as in iBatis. Instead its better to stick to what I know best. Here is the first version of this abstract class.
Listing – AbstractBaseDaoSupport.java
package net.sf.webplug.spring.dao; import java.util.ArrayList; import java.util.HashMap; import java.util.Map; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.jdbc.core.simple.SimpleJdbcDaoSupport; /** * @author dhrubo * */ public abstract class AbstractBaseDaoSupport extends SimpleJdbcDaoSupport{ private Logger logger = LoggerFactory.getLogger(AbstractBaseDaoSupport.class); private Map<String, String> sqlMap; /** * @param sqlMap the sqlMap to set */ public void setSqlMap(Map<String, String> sqlMap) { this.sqlMap = sqlMap; } public String getSql(String id) {Now I change my Dao class to use this abstract class instead.return this.sqlMap.get(id);} }
Listing – UserDaoImpl.java
package net.sf.dms.security.dao.impl; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.jdbc.core.simple.SimpleJdbcDaoSupport; import net.sf.dms.security.dao.api.UserDao; import net.sf.dms.security.domain.User; /** * @author dhrubo * */ public class UserDaoImpl extends AbstractBaseDaoSupport implements UserDao { private Logger logger = LoggerFactory.getLogger(UserDaoImpl.class); @Override public List<User> listUsers() { String sql = this.getSql("listUsers"); List<Map<String,Object>> users = this.getSimpleJdbcTemplate().queryForList(sql,new HashMap()); List<User> userList = new ArrayList<User>(); User userHolder = null; for(Map<String,Object> user : users) { userHolder = new User(); userHolder.setFirstName((String)user.get("first_name")); userHolder.setLastName((String)user.get("last_name")); userHolder.setUserCode((String)user.get("email")); userHolder.setUserId((Integer)user.get("user_id")); userList.add(userHolder); } return userList; } }The sql is now moved to an Spring config file (separate just for SQLs)
Listing – sql-repository.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> <bean id="secSqlMap" class="org.springframework.beans.factory.config.MapFactoryBean"> <property name="sourceMap"> <map> <entry key="listUsers"> <value> <![CDATA[ SELECT first_name ,last_name ,email ,user_id FROM t_user ]]> </value> </entry> </map> </property> </bean> </beans>Now that I have externalized the SQLs, its time to look into the main configuration file. There is something interesting here too.
Listing – applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> <import resource="sql-repository.xml"/> <bean id="secDataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> <property name="driverClassName" value="org.postgresql.Driver"/> <property name="url" value="jdbc:postgresql://localhost:5432/dms"/> <property name="username" value="postgres"/> <property name="password" value="postgres"/> </bean> <bean id="abstractSecBaseDaoSupport" class="net.sf.spring.dao.AbstractBaseDaoSupport" abstract="true"> <property name="dataSource" ref="secDataSource"/> <property name="sqlMap" ref="secSqlMap"/> </bean> <bean id="userDao" class="net.sf.dms.security.dao.impl.UserDaoImpl" parent="abstractSecBaseDaoSupport" /> <bean id="roleDao" class="net.sf.dms.security.dao.impl.RoleDaoImpl" parent="abstractSecBaseDaoSupport"/> <bean id="userRoleDao" class="net.sf.dms.security.dao.impl.UserRoleDaoImpl" parent="abstractSecBaseDaoSupport"/> </beans>Note the abstract class configuration. I do not need to configure the data source property for each dao class anymore. This ends my first step of clean up. In the next post I will show how to extend the abstract class to provide mapper functions.
The conversion to a list of users would be more elegant if done with a RowMapper or ParameterizedRowMapper
ReplyDeleteThe intention here is not to create such small classes for mapping. These small classes are hazards for long term maintenance. Instead the goal is to devise a generic framework to map it.
ReplyDelete