1. 27 Jan, 2018 1 commit
  2. 26 Jan, 2018 1 commit
  3. 21 Jan, 2018 1 commit
  4. 20 Jan, 2018 1 commit
  5. 14 Jan, 2018 1 commit
  6. 13 Jan, 2018 1 commit
    • Make starter names compliant with spring initializer · d1fc2fca
      Johannes Edmeier authored
      In order to make the starters compliant to the spring boot naming rules
      I added a codecentric-* prefix to the server and the client starters.
      All samples are now using our starters and the docs were alignes with
      these changes. In order to not suprise existing users I've added a
      relocation to our old module
  7. 12 Jan, 2018 2 commits
  8. 09 Jan, 2018 1 commit
  9. 04 Jan, 2018 1 commit
    • Refresh info when registration has changed. · fa35de89
      Johannes Edmeier authored
      The info should be updated when the registration has changed. In order
      to prevent a stale instance info, the sba client includes a "startup"
      timestamp in the metadata as default. So when the instance is restarted
      the registration changes and the info is updated, even when the instance
      isn't considered as down in between.
      
      To prevent this when using a discovery client you need to add a value
      to the metadata which changes with every restart.
      (e.g. `random=${random.value}`)
      
      fixes #556
  10. 02 Jan, 2018 1 commit
  11. 01 Jan, 2018 2 commits
  12. 27 Dec, 2017 1 commit
  13. 09 Dec, 2017 1 commit
  14. 16 Nov, 2017 2 commits
  15. 10 Nov, 2017 2 commits
  16. 04 Nov, 2017 1 commit
  17. 22 Sep, 2017 1 commit
  18. 17 Sep, 2017 2 commits
  19. 13 Sep, 2017 1 commit
  20. 01 Sep, 2017 1 commit
  21. 24 Aug, 2017 1 commit
  22. 30 Jul, 2017 1 commit
  23. 25 Jul, 2017 7 commits
  24. 24 Jul, 2017 5 commits
  25. 23 Jul, 2017 1 commit
    • Improve the client configuration for usage in war-file deployments · 2848a637
      Johannes Edmeier authored
      With this commit two new properties were added to ease the client
      configuration when used in servlet containers:
      `spring.boot.admin.client.management-base-url` and
      `spring.boot.admin.client.service-base-url`. Both properties can be used
      to specify protocol, host and port for the urls. The paths will still be
      guessed and appended to the base-urls. Additionally the servlet context
      path is not read from the properties but from the ServletContext itself.
      
      closes #488