Guest User

Untitled

a guest
Aug 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. @Configuration
  2. public class DataSourceConfiguration {
  3.  
  4. // This is the last code section from that link above
  5. @Resource(lookup = "jdbc/oracle")
  6. DataSource ds;
  7.  
  8. @Bean
  9. public DataSource mySpringManagedDS() {
  10. return new DelegatingDataSource(ds);
  11. }
  12.  
  13. }
Add Comment
Please, Sign In to add comment