Answered step by step
Verified Expert Solution
Link Copied!

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.ui.Model;
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
}
@PostMapping("/calculate")
public String calculate(@RequestParam("inputA") double inputA,
@RequestParam("inputB") double inputB,
@RequestParam("operation") 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 IllegalArgumentException("Invalid operation: "+ operation);
}
model.addAttribute("result", 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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

PostgreSQL Up And Running A Practical Guide To The Advanced Open Source Database

Authors: Regina Obe, Leo Hsu

3rd Edition

1491963417, 978-1491963418

More Books

Students also viewed these Databases questions

Question

Describe the four broad categories in the adapted Ansoff matrix?

Answered: 1 week ago

Question

What are Decision Trees?

Answered: 1 week ago

Question

What is meant by the Term Glass Ceiling?

Answered: 1 week ago