com.github.mybatis.util.CloseableUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mybatis-spring-support Show documentation
Show all versions of mybatis-spring-support Show documentation
using mybatis lib, add spring support
The newest version!
package com.github.mybatis.util;
/**
* 工具类
* Created by lirui on 2015-10-18 10:44.
*/
public class CloseableUtil {
private CloseableUtil() {
}
public static void closeQuietly(AutoCloseable c) {
if (c != null) {
try {
c.close();
} catch (Exception ignored) {
}
}
}
}