
XML and Json Response Format using Jackson
There will be some scenarios, where you need to send both the XML and JSON output based on the calling client requests. This might become sometimes tricky if we are using...
Search | Technology | Blogging
There will be some scenarios, where you need to send both the XML and JSON output based on the calling client requests. This might become sometimes tricky if we are using...
It's always tough for me to set the values for the POJO classes. If the POJO going to be complex it will kill my whole day. Hence I was googling and...
This Issue comes when the development environment and the DB Environment are different.For Eg: I have my Local Box running in the IST Zone and the docker container in UTC Zone....
The above Error states that the server you are accessing has some certificate, and you did not have it in your machine. You have to import this local, in the case...
Before starting this post, Make Sure you copy the certificate to the location where you have the docker file. Edit the following docker file according to your requirement. My Requirement was...
Today I was facing some strange issue, when I was trying to connect to the Kubernetes in remote sever got the error as "unable to connect to server: x509: certificate signed...
Below are the configuration required to make the kubectl, access the K8s running in a remote server. So Searched through the documentation and found the following good solution that is 100%...
Dozer is a Java Bean to Java Bean mapper that recursively copies data from one object to another. Typically, these Java Beans will be of different complex types.Dozer supports simple property...
What is the mean by object mapper? As the name suggests mapping the data from one object to another? Consider the situation where you want to convert the object from one form...
We can go through the definition of PV and PVC First. A PersistentVolume (PV) is a piece of storage in the cluster that has been provisioned by an administrator or dynamically provisioned...
Follow the below steps to read the docker images from local instead of pulling them every time from the docker hub. By default, it always reads the images from the docker...
There are scenarios, where we need to add the new attributes often, then the creation of POJO automatically will be helpful to you. You No need to make a lot of...
StAX is a standard XML processing API that allows you to stream XML data from and to your application.This API is better than the DOM parser in the case of Performance....
The Document Object Model (DOM) is an official recommendation of the World Wide Web Consortium (W3C). DOM reads the entire document and will be useful in case of the size of...
Check out the files from the Github here.Navigate to the Folder location where the checkout is done. Execute the Below commands. C:\Users\Syed\Hello-K8s_Job> kubectl create configmap hello --from-file=hello.kshconfigmap/hello createdIt creates the config map...
Follow my previous post and create the sample spring struts integration project from here.Create a Docker File: DockerfileFROM tomcat:latestADD target/SpringStrutsDemo-0.0.1-SNAPSHOT.war /usr/local/tomcat/webapps/EXPOSE 8080CMD ["catalina.sh","run"]Build and tag the Docker File:spring-strutsdemoC:\Users\Syed\Spring-workspace\SpringStrutsDemo>docker build -t spring-strutsdemo .Sending...
InOrder to Integrate Spring boot with the struts 2 follow the below Sample provided. This is a very basic project and gives you an understanding of the spring boot and Struts...
This App has the Following Screens.1. Registration.2. Add BP Readings3.View BP Readings.4. Welcome Screen5. Graphical View The Above Code can be found at the Github from the link here....
Add the following Gradle dependenciesThe Following Code defines the Graph View of line Graph Series.implementation group: 'com.jjoe64', name: 'graphview', version: '4.2.2'package com.atozfit.Activity;import android.graphics.Color;import android.os.Bundle;import androidx.appcompat.app.AppCompatActivity;import com.atozfit.R;import com.atozfit.Service.AtoZBPService;import com.atozfit.main.AtoZBPAttributes;import com.jjoe64.graphview.DefaultLabelFormatter;import com.jjoe64.graphview.GraphView;import com.jjoe64.graphview.helper.StaticLabelsFormatter;import...