First of all, thank you very much for sharing the example,
and I've benefited a lot from your example,
which I've upgraded spring-boot-starter-parent to 2.0.5. RELEASE and
upgraded spring-security-oauth2 to 2.3.3.RELEASE
When I clicked the http://192.168.99.100:8787 home page login link, the requested address was incorrect (return code = 404):
Http://192.168.99.100:8181/oauth/authorize?Client_id=acme&redirect_uri=http://192.168.100:8787/login&response_type=code&state=nIXDJD
I hope correct address should be like this:
Http://192.168.99.100:8181/uaa/oauth/authorize?Client_id=acme&redirect_uri=http://192.168.99.100:8787/login&response_type=code&state=nIXDJD
I don't know how to solve this problem.
My Example address:
https://github.com/zhengzizhi/microservice-store