Package org.jeecgframework.minidao.spring.rowMapper

Examples of org.jeecgframework.minidao.spring.rowMapper.GenericRowMapper


            clazz = Class.forName(values[0]);
          } catch (Exception e) {
            e.printStackTrace();
          }
          if(paramMap!=null){
            return namedParameterJdbcTemplate.query(executeSql, paramMap, new GenericRowMapper(clazz));
          }else{
            return jdbcTemplate.query(executeSql, new GenericRowMapper(clazz));
          }
        }
        // update-end--Author:fancq  Date:20131219 for:支持返回Map和实体 list
      } else if (returnType.isAssignableFrom(Map.class)) {
        //Map类型
View Full Code Here

TOP

Related Classes of org.jeecgframework.minidao.spring.rowMapper.GenericRowMapper

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.