Guest User

Untitled

a guest
Mar 19th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. sample.properties
  2. pref1.pref2.abc.suf = 1
  3. pref1.pref2.def.suf = 2
  4. ...
  5. ...
  6.  
  7. @ConfiguraionProperties
  8. @PropertySource(value = "classpath:sample.properties")
  9. public class Config{
  10. @Autowired
  11. private Environment env;
  12.  
  13. public HashMap<String, Integer> getAllProps(){
  14. //TO-DO
  15. }
  16. }
Add Comment
Please, Sign In to add comment