Guest User

Untitled

a guest
Jul 18th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. @DataSourceDefinition(
  2.  
  3. name = "java:app/MyApp/MyDS",
  4.  
  5. className = "org.h2.jdbcx.JdbcDataSource",
  6.  
  7. url = "jdbc:h2:mem:test"
  8.  
  9. )
  10.  
  11. @DataSourceDefinition(
  12. name = "java:app/MyApp/MyDS",
  13. className = "org.h2.jdbcx.JdbcDataSource",
  14. initialPoolSize = 10,
  15. minPoolSize = 10,
  16. maxPoolSize = 200,
  17. url = "jdbc:h2:mem:test"
  18.  
  19. )
Add Comment
Please, Sign In to add comment