HHH-14760 Close resource - potential resource leak

Fixes https://hibernate.atlassian.net/browse/HHH-14760
This commit is contained in:
boris-unckel 2021-07-29 08:09:13 +02:00 committed by Sanne Grinovero
parent 2f166c31df
commit 3be25aa899
5 changed files with 14 additions and 8 deletions

View File

@ -416,7 +416,9 @@ public class SchemaExport {
Properties properties = new Properties(); Properties properties = new Properties();
if ( commandLineArgs.propertiesFile != null ) { if ( commandLineArgs.propertiesFile != null ) {
properties.load( new FileInputStream( commandLineArgs.propertiesFile ) ); try ( final FileInputStream fis = new FileInputStream( commandLineArgs.propertiesFile ) ) {
properties.load( fis );
}
} }
ssrBuilder.applySettings( properties ); ssrBuilder.applySettings( properties );

View File

@ -180,7 +180,9 @@ public class SchemaUpdate {
if ( parsedArgs.propertiesFile != null ) { if ( parsedArgs.propertiesFile != null ) {
Properties props = new Properties(); Properties props = new Properties();
props.load( new FileInputStream( parsedArgs.propertiesFile ) ); try ( final FileInputStream fis = new FileInputStream( parsedArgs.propertiesFile ) ) {
props.load( fis );
}
ssrBuilder.applySettings( props ); ssrBuilder.applySettings( props );
} }

View File

@ -137,7 +137,9 @@ public class SchemaValidator {
if ( parsedArgs.propertiesFile != null ) { if ( parsedArgs.propertiesFile != null ) {
Properties properties = new Properties(); Properties properties = new Properties();
properties.load( new FileInputStream( parsedArgs.propertiesFile ) ); try ( final FileInputStream fis = new FileInputStream( parsedArgs.propertiesFile ) ) {
properties.load( fis );
}
ssrBuilder.applySettings( properties ); ssrBuilder.applySettings( properties );
} }

View File

@ -160,7 +160,9 @@ public class SchemaValidatorTask extends MatchingTask {
properties.putAll( getProject().getProperties() ); properties.putAll( getProject().getProperties() );
} }
else { else {
properties.load( new FileInputStream( propertiesFile ) ); try ( final FileInputStream fis = new FileInputStream( propertiesFile ) ) {
properties.load( fis );
}
} }
registryBuilder.applySettings( properties ); registryBuilder.applySettings( properties );

View File

@ -197,11 +197,9 @@ public class JpaDescriptorParser {
} }
private void saveTimeStampCache(FileTimeStampChecker fileStampCheck) { private void saveTimeStampCache(FileTimeStampChecker fileStampCheck) {
try { final File file = getSerializationTmpFile();
File file = getSerializationTmpFile(); try ( final ObjectOutput out = new ObjectOutputStream( new FileOutputStream( file ) ) ) {
ObjectOutput out = new ObjectOutputStream( new FileOutputStream( file ) );
out.writeObject( fileStampCheck ); out.writeObject( fileStampCheck );
out.close();
context.logMessage( context.logMessage(
Diagnostic.Kind.OTHER, "Serialized " + fileStampCheck + " into " + file.getAbsolutePath() Diagnostic.Kind.OTHER, "Serialized " + fileStampCheck + " into " + file.getAbsolutePath()
); );