spring boot
Recent Posts
Categories
- Design (2)
- Elasticsearch (3)
- Golang (5)
- hadoop (2)
- Java (12)
- Kubernetes (1)
- linux (1)
- Maven (1)
- Openshift (1)
- Performance (1)
- Scala (2)
- Security (3)
- Spark (2)
- Spring (3)
- Spring Batch (1)
- Spring Boot (2)
- sqoop (1)
- UI (1)
- unix (1)
- Vim (2)
Tags
annotation
apache hive 3
build
cdp
cloudera
commands
CORS
design
design pattern
DNS
elastic
elasticsearch
go
golang
hadoop
hdfs
hive
http
ip
java
jms
junit
maven
mq
mysql
nginx
oracle
proxy
proxy_pass
queue
rdbms
Repository
resolution
resolver
reverseproxy
scala
spark
spring
spring boot
springboot
sqoop
string
time zone
upstream
vim
Recent Posts
Categories
- Design (2)
- Elasticsearch (3)
- Golang (5)
- hadoop (2)
- Java (12)
- Kubernetes (1)
- linux (1)
- Maven (1)
- Openshift (1)
- Performance (1)
- Scala (2)
- Security (3)
- Spark (2)
- Spring (3)
- Spring Batch (1)
- Spring Boot (2)
- sqoop (1)
- UI (1)
- unix (1)
- Vim (2)
Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use.
To find out more, including how to control cookies, see here: Cookie Policy
To find out more, including how to control cookies, see here: Cookie Policy
Tags
annotation
apache hive 3
build
cdp
cloudera
commands
CORS
design
design pattern
DNS
elastic
elasticsearch
go
golang
hadoop
hdfs
hive
http
ip
java
jms
junit
maven
mq
mysql
nginx
oracle
proxy
proxy_pass
queue
rdbms
Repository
resolution
resolver
reverseproxy
scala
spark
spring
spring boot
springboot
sqoop
string
time zone
upstream
vim
Find Us
Address
123 Main Street
New York, NY 10001
Hours
Monday–Friday: 9:00AM–5:00PM
Saturday & Sunday: 11:00AM–3:00PM
%d
Migrating the project from Java 8 to 17 and Spring Boot 2.x to 3.x
In this blog, I will highlight the changes and challenges that I have faced while doing the migration of services from java 8 to 17 and Spring Boot 2.x to. read more…
Share this:
Like this:
Continue Reading
Passing Data to Future Steps in Spring Batch
An ExecutionContext is a set of key-value pairs containing information that is scoped to either StepExecution or JobExecution. Spring Batch persists the ExecutionContext, which helps in cases where you want to restart a batch run (e.g., when a fatal error has occurred, etc.). All that is needed is to put any object to be shared between steps into the context and the framework will take care of the rest. After restart, the values from the prior ExecutionContext are restored from the database and applied.
Share this:
Like this:
Continue Reading
Configure Logging to File in Spring Boot in just one line
Just add the below line in application.properties of your spring boot application and done. 🙂
logging.file = /path/logFileName.log
Share this:
Like this:
Continue Reading