Package | Description |
---|---|
org.apache.ibatis.executor |
Contains the statement executors.
|
org.apache.ibatis.logging |
Base package for logging.
|
org.apache.ibatis.logging.commons |
logger using Commons Logging feature.
|
org.apache.ibatis.logging.jdbc |
Logging proxies that logs any JDBC statement.
|
org.apache.ibatis.logging.jdk14 |
logger using JDK logging feature.
|
org.apache.ibatis.logging.log4j |
logger using Log4J feature.
|
org.apache.ibatis.logging.log4j2 |
logger using Log4J 2 feature.
|
org.apache.ibatis.logging.nologging |
logger for no operation.
|
org.apache.ibatis.logging.slf4j |
logger using SLF4J feature.
|
org.apache.ibatis.logging.stdout |
logger using standard out.
|
org.apache.ibatis.mapping |
Base package for mapping.
|
org.apache.ibatis.session |
Base package.
|
Modifier and Type | Method and Description |
---|---|
protected Connection |
BaseExecutor.getConnection(Log statementLog) |
Modifier and Type | Method and Description |
---|---|
static Log |
LogFactory.getLog(Class<?> clazz) |
static Log |
LogFactory.getLog(String logger) |
Modifier and Type | Method and Description |
---|---|
static void |
LogFactory.useCustomLogging(Class<? extends Log> clazz) |
Modifier and Type | Class and Description |
---|---|
class |
JakartaCommonsLoggingImpl |
Modifier and Type | Field and Description |
---|---|
protected Log |
BaseJdbcLogger.statementLog |
Modifier and Type | Method and Description |
---|---|
static Connection |
ConnectionLogger.newInstance(Connection conn,
Log statementLog,
int queryStack)
Creates a logging version of a connection.
|
static PreparedStatement |
PreparedStatementLogger.newInstance(PreparedStatement stmt,
Log statementLog,
int queryStack)
Creates a logging version of a PreparedStatement.
|
static ResultSet |
ResultSetLogger.newInstance(ResultSet rs,
Log statementLog,
int queryStack)
Creates a logging version of a ResultSet.
|
static Statement |
StatementLogger.newInstance(Statement stmt,
Log statementLog,
int queryStack)
Creates a logging version of a Statement.
|
Constructor and Description |
---|
BaseJdbcLogger(Log log,
int queryStack) |
Modifier and Type | Class and Description |
---|---|
class |
Jdk14LoggingImpl |
Modifier and Type | Class and Description |
---|---|
class |
Log4jImpl |
Modifier and Type | Class and Description |
---|---|
class |
Log4j2AbstractLoggerImpl |
class |
Log4j2Impl |
class |
Log4j2LoggerImpl |
Modifier and Type | Class and Description |
---|---|
class |
NoLoggingImpl |
Modifier and Type | Class and Description |
---|---|
class |
Slf4jImpl |
Modifier and Type | Class and Description |
---|---|
class |
StdOutImpl |
Modifier and Type | Method and Description |
---|---|
Log |
MappedStatement.getStatementLog() |
Modifier and Type | Field and Description |
---|---|
protected Class<? extends Log> |
Configuration.logImpl |
Modifier and Type | Method and Description |
---|---|
Class<? extends Log> |
Configuration.getLogImpl() |
Modifier and Type | Method and Description |
---|---|
void |
Configuration.setLogImpl(Class<? extends Log> logImpl) |
Copyright © 2009–2021 MyBatis.org. All rights reserved.