- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHelloController.java
More file actions
Latest commit
77 lines (59 loc) · 1.75 KB
/
Copy pathHelloController.java
File metadata and controls
77 lines (59 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
packagehello;
importorg.springframework.beans.factory.annotation.Autowired;
importorg.springframework.stereotype.Controller;
importorg.springframework.ui.ModelMap;
importorg.springframework.web.bind.annotation.GetMapping;
importorg.springframework.web.bind.annotation.RequestMapping;
importorg.springframework.web.bind.annotation.RequestMethod;
importorg.springframework.web.bind.annotation.RequestParam;
importorg.springframework.web.bind.annotation.RestController;
importhello.Calculations_repository;
importhello.History;
@Controller
publicclassHelloController {
privatelongi=0;
@Autowired
Calculations_repositoryc;
@RequestMapping(value = "/hello", method = RequestMethod.GET)
publicStringhello(ModelMapmodel)
{
return"hello";
}
@RequestMapping(value = "/hello", method = RequestMethod.POST)
//@GetMapping("/hello")
publicStringcal(ModelMapmodel, @RequestParamStringvalue, @RequestParamStringuser_id)
{
perform_calculationsp = newperform_calculations();
Stringerror = p.isError(value);
if(error.length()!=0)
{
model.put("value", "invalid expression");
Stringstry="";
for(Historyh1:c.findAll())
{
if(user_id.equals(h1.getUser_id()))
stry+=h1.getUser_id()+" "+h1.getQuestion()+" , ";
}
model.put("his",stry);
return"hello";
}
intans = p.result(value);
model.put("value", value);
model.put("ans",ans);
Historyh = newHistory();
h.setQuestion(value);
h.setAnswer(ans);
h.setId(i);
i++;
h.setUser_id(user_id);
c.save(h);
Stringstry="";
for(Historyh1:c.findAll())
{
if(user_id.equals(h1.getUser_id()))
stry+=h1.getUser_id()+" "+h1.getQuestion()+" , ";
}
model.put("his",stry);
return"hello";
}
}