diff --git a/src/main/java/br/com/agapesistemas/agtemplate/jdbc/ConnectionFactory.java b/src/main/java/br/com/agapesistemas/agtemplate/jdbc/ConnectionFactory.java index b15f7c8..940c31c 100644 --- a/src/main/java/br/com/agapesistemas/agtemplate/jdbc/ConnectionFactory.java +++ b/src/main/java/br/com/agapesistemas/agtemplate/jdbc/ConnectionFactory.java @@ -22,7 +22,7 @@ public class ConnectionFactory { public static Connection getConnectionDrive() throws SQLException{ try{ Class.forName("org.postgresql.Driver"); - return DriverManager.getConnection("jdbc:postgresql://localhost:5432/agtemplate","postgres","postgres"); + return DriverManager.getConnection("jdbc:postgresql://localhost:5432/agtemplate","postgres","admin"); }catch (ClassNotFoundException e){ throw new SQLException(e.getMessage()); } diff --git a/target/classes/br/com/agapesistemas/agtemplate/jdbc/ConnectionFactory.class b/target/classes/br/com/agapesistemas/agtemplate/jdbc/ConnectionFactory.class index 88e469a..8962f65 100644 Binary files a/target/classes/br/com/agapesistemas/agtemplate/jdbc/ConnectionFactory.class and b/target/classes/br/com/agapesistemas/agtemplate/jdbc/ConnectionFactory.class differ