This is not a kotlin related question. But still i...
# server
p
This is not a kotlin related question. But still if i can get some guidance that would be very helpful. So i am trying to split my monolithic server to microservice.(for learning peruse) project link after studying some books and watching some tutorials i came up with a design. If you guys can look into it and suggest some improvement or suggestion some commuting that i can join to get some help that would be grate. Design file is in the thread.
not kotlin but kotlin colored 3
Kyoku System Design.drawio.svg
j
My suggestion would be to try to refactor what you have to remove duplication and to reduce the number of return @ , and make the code a bit more declarative. I think this might be more valuable than turning things into microservices. You've also got some directory traversal vulnerabilities I think. Usually a microservice architecture is valuable when services lie in a different context, or have differing scale, response time, security or criticality properties, but I dont think that applies here. Good luck!
p
Ok I will start there
e
p
I just modularized the existing project... Understanding spring boot using kotlin and microservices are next to my learning list. What you shared is invaluable resource I just looked into it. I will revisit it for sure. Thanks :)