- It consist of production ready, feature to monitor and manage your application.
- We can monitor and manage our application.
- We can choose to manage and monitor our application using HTTP end points or with JMX.
- Auditing, health and Matrix gathering can also be automatically applied to our application.
- Actuator helps to refresh the micro service without restarting it with any changes to its properties file.
- We use URL /actuator/refresh(POST)
- When we hit refresh URL of actuator, it updates, the configuration of that micro service.
- Micro service fetches latest configuration again from properties file.
- If we have multiple instances for a micro service running, then it will only refresh that instance from which Call is being made. This is the drawback of actuator and to overcome this drawback, we use spring cloud bus.
- The other instances of micro service will not get updated and will remain same.
- Actuator Configuration
- Creating Custom Health Checks
- https://github.com/gauravmatta/springmvc/blob/1e8408dcd02e53b54c3cbae3dd1cd20f9874e5f9/currency-service/src/main/java/com/springimplant/currencyservice/service/HealthService.java
- https://github.com/gauravmatta/springmvc/blob/1e8408dcd02e53b54c3cbae3dd1cd20f9874e5f9/currency-service/src/main/java/com/springimplant/currencyservice/service/impl/KafkaHealthServiceImpl.java
- Annotations
- Controllers
- Components
- Dependencies
- Documenting Java Code
- Entities
- Hibernate
- HTTPS Security
- Spring Core
- Maven
- Spring MVC
- Microservices
- Packages
- Project Configuration
- REST Templates
- Spring Boot
- AOP
- Spring DI
- Spring IOC
- Spring Data
- Tag Library
- View Resolvers
- Validations,Errors & Exceptions
- Activiti Framework
- Deploy spring boot Microservices in Fargate
- Spring Security
- Password encryption using Jasypt
- Flyway DB Migration Script
- Session in Spring Boot
- Spring Expression Language
- Spring JDBC
- Spring ORM
- Testing Spring Boot
- Correlation ID
- Logging
- ELK Stack
- EFK Stack
- Swagger
- Rabbit MQ
- Circuit Breaker Pattern
- Connection Pooling
- Spring Batch
- Zipkins
- Kafka
- Spring Boot Actuator
- Spring Cloud
- Caching
- Gateway
- Service Discovery
Spring Boot Actuator
Subscribe to:
Posts (Atom)
Spring Boot
What is circular/cyclic dependency in spring boot? When two services are interdependent on each other, that is to start one service, we requ...
-
What is JPA? JPA Is also called as Java persistence API It is a standard form oracle to map object to database relations. Provides specific...
-
Technology's / frameworks in Spring Spring core Spring MVC Spring boot Spring data Hibernate
-
Q What is the minimal web version required to use JSTL? And : 2.4 For example following tag from web.xml uses web 4.0 <web-app xmlns:xs...
No comments:
Post a Comment