Question: Making a webbase calculator ( used spring mvc with maven ) This is WebcalculatorController.java package com.example.Webcalculator; import org.springframework.stereotype.Controller; import org.springframework.ui . Model; import org.springframework.web.bind.annotation.GetMapping; import
Making a webbase calculator used spring mvc with maven
This is WebcalculatorController.java
package com.example.Webcalculator;
import org.springframework.stereotype.Controller;
import org.springframework.uiModel;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
@Controller
public class WebcalculatorController
@GetMapping
public String showCalculator
return "calculator"; This will return the calculator.html view
@PostMappingcalculate
public String calculate@RequestParaminputA double inputA,
@RequestParaminputB double inputB,
@RequestParamoperation String operation,
Model model
double result;
switch operation
case "add":
result inputA inputB;
break;
case "subtract":
result inputA inputB;
break;
Add more cases for other operations multiply divide, etc.
default:
throw new IllegalArgumentExceptionInvalid operation: operation;
model.addAttributeresult result;
return "result"; This will return the result.html view
this is Calculator.html
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
