Showing posts with label spring boot. Show all posts
Showing posts with label spring boot. Show all posts

Sunday, 5 September 2021

MapStruts

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...

Saturday, 10 July 2021

Generating the Pojo Classes automatically

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...

Thursday, 17 June 2021

Deploying SpringBoot Struts 2 Integration Project in Docker

 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...

Spring Boot Struts 2 Integration

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...

Thursday, 11 June 2020

Spring Boot With Docker

We have seen more definition about the containerization and its time for us to see some original work in action.We will See in this post how to create a docker image...