Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. package com.medium.danieldiasjava.app;
  2.  
  3. import org.apache.deltaspike.core.api.config.ConfigResolver;
  4.  
  5. public class ConfigurationApplication {
  6. public static void main(String[] args) {
  7.  
  8. String nome = ConfigResolver.getPropertyValue("meu.nome");
  9.  
  10. int idade = ConfigResolver.resolve("minha.idade")
  11. .as(Integer.class)
  12. .getValue();
  13.  
  14. System.out.println("Olá ".concat(nome).concat(" sua idade é: ") + idade);
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement