feat: optimize npe (#147)

* fix: npe when sync project

* feat: update frontend resources
This commit is contained in:
vran
2022-05-06 19:46:13 +08:00
committed by GitHub
parent 3f2ff6e2ce
commit 3450947b0f
25 changed files with 28 additions and 24 deletions

View File

@@ -143,13 +143,16 @@ public class DocumentService {
databasirConfig.setIgnoreTableNameRegex(jsonConverter.fromJson(rule.getIgnoreTableNameRegexArray()));
databasirConfig.setIgnoreTableColumnNameRegex(jsonConverter.fromJson(rule.getIgnoreColumnNameRegexArray()));
try {
if (jdbcConnection == null) {
throw DomainErrors.CONNECT_DATABASE_FAILED.exception();
}
DatabaseMeta databaseMeta = Databasir.of(databasirConfig)
.get(jdbcConnection, dataSource.getDatabaseName(), dataSource.getSchemaName())
.orElseThrow(DomainErrors.DATABASE_META_NOT_FOUND::exception);
return databaseMeta;
} finally {
try {
if (!jdbcConnection.isClosed()) {
if (jdbcConnection != null && !jdbcConnection.isClosed()) {
jdbcConnection.close();
}
} catch (SQLException e) {