Advertisement
AdrakPro

profiles

Jul 15th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.64 KB | None | 0 0
  1. @Retention(RetentionPolicy.RUNTIME)
  2. @Target({ElementType.TYPE, ElementType.METHOD})
  3. @Profile("dev")
  4. public @interface DevProfile {}
  5.  
  6. @Bean
  7. @DevProfile
  8. public DatabaseDatasource getH2Datasource() {
  9.         return (() -> Arrays.asList("KasiaTest", "BartekTest", "AniaTest", "KrzysztofTest"));
  10.     }
  11.  
  12.     @Bean
  13.     @ProdProfile
  14.     public DatabaseDatasource | getMysqlDatasource() {
  15.         return new DatabaseDatasource() {
  16.         //read lines
  17.     }
  18.  }
  19.  
  20. <plugin>
  21. <groupId>org.codehaus.mojo</groupId>
  22. <artifactId>exec-maven-plugin
  23. </artifactId>
  24. <version>1.6.0</version>
  25. <configuration>
  26. <mainClass></mainClass>
  27. </configuration>
  28. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement