📄 basedao.java
字号:
package stock.dao;
import java.io.Reader;
import com.ibatis.common.resources.Resources;
import com.ibatis.sqlmap.client.SqlMapClient;
import com.ibatis.sqlmap.client.SqlMapClientBuilder;
public class BaseDao
{
private static final SqlMapClient sqlMapClient;
static
{
try
{
String resource = "config/ibatis/sql-map-config.xml";
Reader reader = Resources.getResourceAsReader(resource);
sqlMapClient = SqlMapClientBuilder.buildSqlMapClient(reader);
}
catch (Exception e)
{
// If you get an error at this point, it matters little what it was.
// It is going
// to be
// unrecoverable and we will want the app to blow up good so we are
// aware of the
// problem. You should always log such errors and re-throw them in
// such a way
// that
// you can be made immediately aware of the problem.
e.printStackTrace();
throw new RuntimeException(
"Error initializing MyAppSqlConfig class. Cause: " + e);
}
}
public static SqlMapClient getSqlMapInstance()
{
return sqlMapClient;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -