当前位置:   article > 正文

Mybatis-plusMybatis 通过获取sqlSession执行原生sql(执行程序代码中sql字符串)_mybatis 获取sqlsession

mybatis 获取sqlsession

Mybatis-plus/Mybatis通过获取sqlSession执行原生jdbc执行sql;

此处demo只写了执行查询sql,有需要可以执行增删改查都可,与原生jdbc调用方式一样。

@Component
@Slf4j
public class DBUtils {
	
	private static final String PREFIX_LOG = "【自定义DB工具】";

	@Autowired
	private SqlSessionTemplate sqlSessionTemplate;
	
	public List<Map<String, Object>> excuteQuerySql(String sql){
		log.info(PREFIX_LOG+"执行查询sql:"+sql);
		List<Map<String, Object>> list = new ArrayList<Map<String,Object>>();
		PreparedStatement pst = null;
		SqlSession session = getSqlSession();
		ResultSet result = null;
		try {
			pst = session.getConnection().prepareStatement(sql);
			result = pst.executeQuery();
			ResultSetMetaData md = result.getMetaData(); //获得结果集结构信息,元数据
			int columnCount = md.getColumnCount();   //获得列数
			while (result.next()) {
				Map<String,Object> rowData = new HashMap<String,Object>();
				for (int i = 1; i <= columnCount; i++) {
					rowData.put(md.getColumnName(i), result.getObject(i));
				}
				list.add(rowData);
			}
		} catch (SQLException e) {
			e.printStackTrace();
		}finally {
			if(pst!=null){
				try {
					pst.close();
				} catch (SQLException e) {
					e.printStackTrace();
				}
			}
			closeSqlSession(session);
		}
		return list;
	}
	
	/**
	 * 获取sqlSession
	 * @return
	 */
	public SqlSession getSqlSession(){
		return SqlSessionUtils.getSqlSession(sqlSessionTemplate.getSqlSessionFactory(),
				sqlSessionTemplate.getExecutorType(), sqlSessionTemplate.getPersistenceExceptionTranslator());
	}
	
	/**
	 * 关闭sqlSession
	 * @param session
	 */
	public void closeSqlSession(SqlSession session){
		SqlSessionUtils.closeSqlSession(session, sqlSessionTemplate.getSqlSessionFactory());
	}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/174177
推荐阅读
相关标签
  

闽ICP备14008679号