我使用schemacrawler从mysql数据库获取表列表。问题是,结果包括来自所有可用数据库的表。它从给定数据库名称(DataSource)之外获取表。
<bean id="schemaCrawlerOptions" class="schemacrawler.schemacrawler.SchemaCrawlerOptions">
<property name="sequenceInclusionRule">
<bean class="schemacrawler.schemacrawler.IncludeAll" />
</property>
<property name="tableTypes">
<set>
<value>TABLE</value>
<!-- <value>VIEW</value> -->
</set>
</property>
<property name="schemaInfoLevel">
<bean factory-method="standard"
class="schemacrawler.schemacrawler.SchemaInfoLevel" />
</property>
</bean>
<bean id="executableForSchema" class="schemacrawler.tools.text.schema.SchemaTextExecutable"> <!-- This is the final class we need to execute schemacrawler -->
<constructor-arg value="schema" />
<property name="schemaCrawlerOptions" ref="schemaCrawlerOptions" />
<property name="schemaTextOptions">
<bean class="schemacrawler.tools.text.schema.SchemaTextOptions">
<property name="showOrdinalNumbers" value="false" />
<property name="showStandardColumnTypeNames" value="false" />
<property name="hidePrimaryKeyNames" value="true" />
<property name="hideIndexNames" value="true" />
<property name="hideForeignKeyNames" value="true" />
<property name="hideConstraintNames" value="true" />
<property name="noInfo" value="false" />
</bean>
</property>
<property name="outputOptions" ref="outputOptions" />
</bean>
这是我的春天背景。
答案 0 :(得分:1)
Khader,这种行为实际上取决于数据库的权限,而不取决于您使用的数据源。如果您的数据库用户可以访问表,SchemaCrawler将报告它,而不管它属于哪个模式。因此,最好使用访问受限的数据库用户,而不是sysadmin帐户。
但是,您可以让SchemaCrawler限制它将报告的模式和表。您需要在schemaCrawlerOptions上设置schemaInclusionRule和(可选)tableInclusionRule。
换句话说,请妥善设置:
<bean id="schemaCrawlerOptions" class="schemacrawler.schemacrawler.SchemaCrawlerOptions">
<property name="schemaInclusionRule">
... ... <!-- Set an appropriate value here -->
</property>
... ... ...
</bean>
Sualeh。