获取spring bean

本文介绍了一种使用Spring框架简化数据库更新操作的方法。通过对比传统方式和Spring框架下的SimpleJdbcTemplate,展示了如何减少代码量并避免资源管理问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

某个线程处理回调时,需要对数据库进行操作,本来可以这样:

	public int update(int id) {
Connection conn = null;
PreparedStatement stmt = null;
int rows = -1;
try{
conn = getConnection();
String sql = "update xxlog set result=1 where id=?";
stmt = conn.prepareStatement(sql);
stmt.setInt(1, id);
rows = stmt.executeUpdate();
} catch (Exception se) {
logger.error("update,error!", se);
} finally {
try {
if (stmt != null) stmt.close();
if (conn != null && !conn.isClosed()) conn.close();
} catch (Exception e) {
e.printStackTrace();
}
}
return rows;
}

public static Connection getConnection() {
Connection conn = null;
try {
Context initCtx = new InitialContext();
Context ctx = (Context) initCtx.lookup("java:comp/env");
DataSource ds = (DataSource) ctx.lookup("jdbc/xxxxx");
conn = ds.getConnection();
} catch (Throwable se) {
logger.error("getConnection ERROR!" + se);
}
return conn;
}



我觉得自已的项目用sping,而且不想对释放资源进行管理,所以就改成这样:
WebApplicationContext context = ContextLoader.getCurrentWebApplicationContext();
SimpleJdbcTemplate simpleJdbcTemplate = (SimpleJdbcTemplate) context.getBean("simpleJdbcTemplate");
String sql="update xxlog set result=1 where id=?";
int result = simpleJdbcTemplate.update(sql, orderId);


简单几行就可以了。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值