I have submitted my JAVA EAR to Veracode Security tool and got an issue of Plaintext Storage of a Password on the following code:
ApplicationProperties app = new ApplicationProperties(fileProp);
String sqlServerPassword = app.getAppProperty("sqlServerPassword");
con = DriverManager.getConnection(sqlServerConnectString, sqlServerUserID, sqlServerPassword);
And in properties file I have stored the value of this password.
Someone please help me to resolve this issue.