not? How to know whether the service is running? How to scale the services? Load Balancing & Service Discovery Automatic Scaling based on conditions Automated monitoring to start & stop services @sendilkumarn
not? How to know whether the service is running? How to scale the services? How to safely update a password? Load Balancing & Service Discovery Automatic Scaling based on conditions Automated monitoring to start & stop services Secret & Con fi g Management @sendilkumarn
errors User result = userRepository.save(user); // do something with the result return ResponseEntity .created(new URI("/api/users/" + result.getId())) .headers(HeaderUtil.createEntityCreationAlert(...)) .body(result); } @sendilkumarn
Handle errors User result = userRepository.save(user); // do something with the result return ResponseEntity .created(new URI("/api/users/" + result.getId())) .headers(HeaderUtil.createEntityCreationAlert(...)) .body(result); } @sendilkumarn
Handle errors return User result = userRepository.save(user) .flatMap(// do something with the result) .map(return ResponseEntity .created(new URI("/api/users/" + result.getId())) .headers(HeaderUtil.createEntityCreationAlert(...)) .body(result)); } @sendilkumarn
your services enable you to scale faster super power to manage & maintain your services @scale makes things fast & resilient makes it easier to develop & deploy @sendilkumarn
Demo splitting your services enable you to scale faster super power to manage & maintain your services @scale makes things fast & resilient makes it easier to develop & deploy @sendilkumarn