Spring boot

Registration Form in Spring boot with Vue.js

In this tutorials will teach you spring boot with vue.js how to do the Restful API to add the records in to the mysql database .Spring Boot with vue.js use to create a full-stack web application.how to insert the records into mysql database step by step via spring boot  layer architecture process using industrial standards.

Create the Package entity inside the package create the class Employee

Employee

package com.example.Registation.Entity;
import javax.persistence.*;

@Entity
@Table(name="employee")
public class Employee 
{
    @Id
    @Column(name="employee_id", length = 45)
    @GeneratedValue(strategy = GenerationType.AUTO)
    private int employeeid;

    @Column(name="employee_name", length = 255)
    private String employeename;

    @Column(name="address", length = 255)
    private String address;

    @Column(name="mobile", length = 20)
    private int mobile;

    public Employee(int employeeid, String employeename, String address, int mobile) {
        this.employeeid = employeeid;
        this.employeename = employeename;
        this.address = address;
        this.mobile = mobile;
    }

    public Employee() {
    }

    public int getEmployeeid() {
        return employeeid;
    }

    public void setEmployeeid(int employeeid) {
        this.employeeid = employeeid;
    }

    public String getEmployeename() {
        return employeename;
    }

    public void setEmployeename(String employeename) {
        this.employeename = employeename;
    }

    public String getAddress() {
        return address;
    }

    public void setAddress(String address) {
        this.address = address;
    }

    public int getMobile() {
        return mobile;
    }

    public void setMobile(int mobile) {
        this.mobile = mobile;
    }

    @Override
    public String toString() {
        return "Employee{" +
                "employeeid=" + employeeid +
                ", employeename='" + employeename + '\'' +
                ", address='" + address + '\'' +
                ", mobile=" + mobile +
                '}';
    }
}

Create the Package Dt0 inside the package create the class EmployeeDTO

EmployeeDTO

package com.example.Registation.Dto;

import javax.persistence.Column;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;

public class EmployeeDTO {


    private int employeeid;
    private String employeename;
    private String address;
    private int mobile;

    public EmployeeDTO(int employeeid, String employeename, String address, int mobile) {
        this.employeeid = employeeid;
        this.employeename = employeename;
        this.address = address;
        this.mobile = mobile;
    }

    public EmployeeDTO() {
    }

    public int getEmployeeid() {
        return employeeid;
    }

    public void setEmployeeid(int employeeid) {
        this.employeeid = employeeid;
    }

    public String getEmployeename() {
        return employeename;
    }

    public void setEmployeename(String employeename) {
        this.employeename = employeename;
    }

    public String getAddress() {
        return address;
    }

    public void setAddress(String address) {
        this.address = address;
    }

    public int getMobile() {
        return mobile;
    }

    public void setMobile(int mobile) {
        this.mobile = mobile;
    }

    @Override
    public String toString() {
        return "EmployeeDTO{" +
                "employeeid=" + employeeid +
                ", employeename='" + employeename + '\'' +
                ", address='" + address + '\'' +
                ", mobile=" + mobile +
                '}';
    }
}

Create the Package Controller inside the package create the class EmployeeController

EmployeeController

package com.example.Registation.EmployeeController;
import com.example.Registation.Dto.EmployeeDTO;
import com.example.Registation.Service.EmployeeService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;

@RestController
@CrossOrigin
@RequestMapping("api/v1/employee")
public class EmployeeController {

    @Autowired
    private EmployeeService employeeService;

    @PostMapping(path = "/save")
    public String saveEmployee(@RequestBody EmployeeDTO employeeDTO)
    {
        String id = employeeService.addEmployee(employeeDTO);
        return id;
    }
}

Create the Package Service inside the package create the one class EmployeeServiceIMPL and create one interface EmployeeService

Employee Service

package com.example.Registation.Service;

import com.example.Registation.Dto.EmployeeDTO;

public interface EmployeeService {
    String addEmployee(EmployeeDTO employeeDTO);
}

EmployeeServiceIMPL

then run the Back-end Spring Boot Application.

Vuejs

Vuejs is a single page frond-end application.

Install Vuejs

npm install -g vue-cli

After installed successfully create the vue.js project using following command

Type the Below command to create the new project

vue init webpack Registationfrontend

After enter all the details and press enter key your project all dependencies get installed.

after the open your project on the vs code Editor

open the src folder inside the folder has folder routes folder inside the folder has file
index.js .here  i am going to link the new component Router.

import Vue from 'vue'
import Router from 'vue-router'
import Registation from '@/components/Registation'
Vue.use(Router)

export default new Router({
  routes: [
    {
      path: '/',
      name: 'Registation',
      component: Registation
    }
  ]
})

After that create the new component Registation.vue

in this component i have created the Registation form.

<template>
<div class="row">

    <h2 align="center">Employee Registation</h2>

 <div class="col-sm-6">

<form @submit.prevent="saveData">
  <div class="form-group" align="left">
    <label>Employee Name</label>
    <input type="text" v-model="employee.employeename" class="form-control" id="exampleInputEmail1" placeholder="Enter email">
   
  </div>

  <div class="form-group" align="left">
    <label>Address</label>
    <input type="text" v-model="employee.address" class="form-control" id="exampleInputEmail1" placeholder="Enter Address">
   
  </div>

 <div class="form-group" align="left">
    <label>mobile</label>
    <input type="text" v-model="employee.mobile" class="form-control" id="exampleInputEmail1" placeholder="Enter Mobile">
   
  </div>

  <br>
  <button type="submit" class="btn btn-primary">Submit</button>
</form>
   </div>
</div>
</template>

<script>

import Vue from 'vue';
import axios from 'axios';

  Vue.use(axios)
  export default {
    name: 'Registation',
    data () {
      return {
        result: {},
        employee:{
                   id: '',
                   employeename: '',
                   address: '',
                   mobile: ''
        }
      }
    },
    created() { 
    },
    mounted() {
          console.log("mounted() called.......");
      },
    methods: {
           saveData()
           {
            axios.post("http://localhost:8085/api/v1/employee/save", this.employee)
            .then(
              ({data})=>{
                alert("saveddddd");
              }
            )
           }
      }
  }

</script>

i have attached the video link below. which will do this tutorials step by step.

admin

Recent Posts

Build Simple Water System Calculator in Java Using Swing

If you're just beginning to learn Java GUI programming creating an Water System Calculator is a fantastic project for…

4 days ago

GitHub Copilot vs Microsoft Copilot Best AI Tool to Use in 2025

GitHub is a powerful tool used by teams and developers around the globe. This guide is…

1 week ago

Chat with Claude AI Free – Your Super-Smart AI Buddy

It's like having a super-smart buddy that is always there to help you write stories,…

2 weeks ago

Best Festivals UK 2025 [Free Guide Included]

The UK is known for its rich history, diverse culture, and most of all  its…

2 weeks ago

Bank Holidays 2025 UK – Plan Your Perfect Long Weekends

Do you have a plan for your next holiday? Being aware of the Bank Holidays within the…

2 weeks ago

Master Cursor AI Full Guide for Students & Creators

The world is rapidly changing of software development AI-assisted tools for coding have become the main focus. As…

2 weeks ago