Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started