connectionpoolinf.java
来自「这是一个mvc模式」· Java 代码 · 共 25 行
JAVA
25 行
package jsp.tags.dapact.tags.data;
import java.sql.Connection;
import java.sql.SQLException;
/**
* Title: Data Aware Processing And Control Tags
* Description: Tag library for the processing and controlling the input and output of data.
* Copyright: LGPL (http://www.gnu.org/copyleft/lesser.html)
* Compile Date: @compile_date@
* @author Allen M Servedio
* @amp_sign@version @VERSION@
*/
/**
* The system uses this class to interact with the user's database connection pool for
* releasing connections.
*/
public interface ConnectionPoolInf
{
/**
* Release the connection that this object contains.
*/
public void releaseConnection() throws SQLException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?