Advertisement
Guest User

Untitled

a guest
Dec 6th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.75 KB | None | 0 0
  1. //no maven, adicionar os parametros de profile
  2. <dsRhvEscalas>jdbc:oracle:thin:@10.9.0.51:1521:drhev</dsRhvEscalas>
  3. <dsRhvEscalas>jdbc:oracle:thin:@10.9.0.30:1532:hrhev</dsRhvEscalas>
  4. <dsRhvEscalas>jdbc:oracle:thin:@10.6.0.30:1521:prhev</dsRhvEscalas>
  5.  
  6. //nas chamadas
  7. oraConn = (OracleConnection) getRhvEscalasConnection();
  8.  
  9.  
  10. private Connection getRhvEscalasConnection() throws Exception{
  11.  
  12.         Driver myDriver = new oracle.jdbc.driver.OracleDriver();
  13.         ResourceBundle main = PropertyResourceBundle.getBundle("main.properties");
  14.         DriverManager.registerDriver(myDriver);
  15.         String jdbcUrl = main.getString("dsRhvEscalas");
  16.  
  17.         return DriverManager.getConnection(jdbcUrl,"rhvescalas","rhvescalas#01");
  18.     }
  19.  
  20. //no main.properties
  21. dsRhvEscalas = ${dsRhvEscalas}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement