Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: public class GestorDeConexiones { private final static String DRIVER_CLASS_NAME = "com.mysql.jdbc.Driver"; private final static String DRIVER_URL = "jdbc:mysql://127.12.143.2:3306/"; private final static String USER = "xxxxxx"; private final static String PASSWORD = "xxxxxx"; static { try { Class.forName(DRIVER_CLASS_NAME); } catch (ClassNotFoundException e) { e.printStackTrace(System.err); } } private GestorDeConexiones() {} public final […]
↧