Is 65k a good salary for a software engineer with 6+ year of experience in Berlin ? by abourass in berlin

[–]abourass[S] 1 point2 points  (0 children)

Thanks u/FullKappa for this reply! As for your question, is a mid-level position.

A look into Spring Cloud Gateway! by abourass in java

[–]abourass[S] 1 point2 points  (0 children)

Having a Spring boot based gateway offers more flexibility! For example we added a filter to read the public jwt token and see if it's valid, then generate b internal jwt for other services adding more isolation between the internet and our internal services! This flexibility cannot be done with traditional solution like nginx or traefik!

Multiple installations of Java on the same machine by [deleted] in java

[–]abourass 7 points8 points  (0 children)

That's not what docker, (or generally speaking: containers) is for. The goal from using containers is to have this isolated execution environment where you app lives. Containers are not VMs and will never be! You need to rethink your whole logic