Bhupendra Patidar

I am Bhupendra Patidar, full-stack Java developer, and Automation engineer. I am enjoying programming since last 6 years and sharing my experiences with the community. Thank You to visit this article:). Reach me over the Skype: jcodebun, Mail: jcodebun@gmail.com

javax.servlet.http.HttpServlet was not found on the Java Build Path

When we create a new java web project in eclipse or STS. It always shows the error message on JSP page as “javax.servlet.http.HttpServlet” was not found on the Java Build Path. This is a servlet error, It means the project did not find any maven dependencies or jar to use servlet. Now, below are the …

javax.servlet.http.HttpServlet was not found on the Java Build Path Read More »

Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer in pom.xml

Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer in pom.xml eclipse or sts. you might be facing this error in pom.xml. while creating a new project or importing any existing project into eclipse or STS. Maven error “Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer in pom.xml” It’s showing due to the maven and java version incompatibility. To solve this error …

Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer in pom.xml Read More »

Crud operations using Spring Boot, JPA, RestAPI, Postman and MYSQL

Create, Read, Update and Delete using spring boot, Hibernate, JPA, Postman, and MYSQL. In this tutorial, we will create Restapis to perform crud operations. This example uses eclipse and Lombok plugins and the project is created by the Spring Initializer tool. Its a maven project and below are the required maven dependencies that need to …

Crud operations using Spring Boot, JPA, RestAPI, Postman and MYSQL Read More »

How to disable first option in select drop in spring form

disabled=”disabled” Is used to disable the first options in the select dropdown in spring form below is the example <sf:select class=”select form-control-lg” path=”type”> <option selected=”true” disabled=”disabled”>Select Leave Type</option> <sf:option value=”CL” label=”CL”/> <sf:option value=”PL” label=”PL”/> <sf:option value=”SL” label=”SL”/> </sf:select> Disable input into the spring form readonly=”true”An attribute will disable any input field into the spring form. …

How to disable first option in select drop in spring form Read More »

How to implement MVC architecture in a java web project

Model view controller(MVC) is a project resource management architecture that divides the development process into 3 parts Model, View, and Controller. In this tutorial, I will cover what is MVC, Why we use MVC, and most importantly How to implement MVC architecture into a java web project? What is MVC MVC is known as model view …

How to implement MVC architecture in a java web project Read More »