mybatis 查询所有表名
时间: 2023-11-09 11:08:28 浏览: 74
mybatis061 多表查询
3星 · 编辑精心推荐
你使用 MyBatis Generator (MBG) 工具来生成查询所有表名的代码。以下是一个简单的示例:
1. 在 pom.xml 文件中添加以下依赖:
```xml
<dependency>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-core</artifactId>
<version>1.4.0</version>
</dependency>
```
2. 在 mybatis-generator.xml 文件中添加以下配置:
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE generatorConfiguration
PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
"http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
<generatorConfiguration>
<context id="context1">
<jdbcConnection driverClass="com.mysql.jdbc.Driver"
connectionURL="jdbc:mysql://localhost:3306/mydatabase"
userId="myusername"
password="mypassword">
</jdbcConnection>
<javaModelGenerator targetPackage="com.example.model"
targetProject="src/main/java">
</javaModelGenerator>
<sqlMapGenerator targetPackage="com.example.mapper"
targetProject="src/main/resources">
</sqlMapGenerator>
<javaClientGenerator type="XMLMAPPER"
targetPackage="com.example.mapper"
targetProject="src/main/java">
</javaClientGenerator>
<table tableName="%"
domainObjectName="Table"
enableCountByExample="false"
enableDeleteByExample="false"
enableSelectByExample="false"
enableUpdateByExample="false">
</table>
</context>
</generatorConfiguration>
```
其中,`<jdbcConnection>` 标签中的参数需要根据你的数据库配置进行修改。
3. 运行 MBG 工具,生成代码:
```java
public interface TableMapper {
List<String> selectAllTableNames();
}
```
你可以在 `selectAllTableNames()` 方法中执行查询所有表名的 SQL 语句,然后返回结果。例如:
```java
public List<String> selectAllTableNames() {
try (SqlSession sqlSession = sqlSessionFactory.openSession()) {
return sqlSession.selectList("com.example.mapper.TableMapper.selectAllTableNames");
}
}
```
阅读全文