質問編集履歴
3
削除された内容の復元を行いました
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
javaを教えてください
|
1
|
+
課金額を入力できないようにするjavaを教えてください
|
test
CHANGED
@@ -1 +1,63 @@
|
|
1
|
+
課金額に負数を入力できないようにするjavaを教えてください。
|
2
|
+
|
3
|
+
package com.example.billing.Controller;
|
4
|
+
|
5
|
+
import com.example.billing.Data.*;
|
6
|
+
|
7
|
+
import com.example.billing.Request.*;
|
8
|
+
|
9
|
+
import com.example.billing.Service.*;
|
10
|
+
|
11
|
+
import org.springframework.beans.factory.annotation.Autowired;
|
12
|
+
|
13
|
+
import org.springframework.stereotype.Controller;
|
14
|
+
|
15
|
+
import org.springframework.ui.Model;
|
16
|
+
|
17
|
+
import org.springframework.web.bind.annotation.GetMapping;
|
18
|
+
|
19
|
+
import org.springframework.web.bind.annotation.ModelAttribute;
|
20
|
+
|
21
|
+
import org.springframework.web.bind.annotation.PathVariable;
|
22
|
+
|
23
|
+
import org.springframework.web.bind.annotation.PostMapping;
|
24
|
+
|
25
|
+
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
|
26
|
+
|
27
|
+
@Controller
|
28
|
+
|
29
|
+
public class EditController {
|
30
|
+
|
31
|
+
@Autowired
|
32
|
+
|
33
|
+
BillingService BillingService;
|
34
|
+
|
35
|
+
@GetMapping(value = "/edit/{id}")
|
36
|
+
|
37
|
+
public String edit(@PathVariable("id") final Integer id, Model model) {
|
38
|
+
|
39
|
+
Billing Billing = BillingService.findById(id);
|
40
|
+
|
41
|
+
model.addAttribute("title", "編集画面");
|
42
|
+
|
43
|
+
model.addAttribute("billing", Billing);
|
44
|
+
|
45
|
+
return "edit";
|
46
|
+
|
47
|
+
}
|
48
|
+
|
49
|
+
@PostMapping(value = "/update")
|
50
|
+
|
51
|
+
public String update(@ModelAttribute final BillingEditRequest BillingEditRequest,
|
52
|
+
|
53
|
+
RedirectAttributes RedirectAttributes, Model model) {
|
54
|
+
|
55
|
+
BillingService.edit(BillingEditRequest);
|
56
|
+
|
1
|
-
|
57
|
+
RedirectAttributes.addAttribute("app", BillingEditRequest.getApplication());
|
58
|
+
|
59
|
+
return "redirect:/billinghistory/{app}";
|
60
|
+
|
61
|
+
}
|
62
|
+
|
63
|
+
}
|
2
V画面を開いたときに今日の日付を入力
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
javaを教えてください
|
test
CHANGED
File without changes
|
1
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
課金額
|
1
|
+
課金額を入力できないようにするjavaを教えてください
|
test
CHANGED
@@ -1,91 +1 @@
|
|
1
|
-
課金額に負数を入力できないようにするjavaを教えてください。
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
package com.example.billing.Controller;
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
import com.example.billing.Data.*;
|
14
|
-
|
15
|
-
import com.example.billing.Request.*;
|
16
|
-
|
17
|
-
import com.example.billing.Service.*;
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
import org.springframework.beans.factory.annotation.Autowired;
|
22
|
-
|
23
|
-
import org.springframework.stereotype.Controller;
|
24
|
-
|
25
|
-
import org.springframework.ui.Model;
|
26
|
-
|
27
|
-
import org.springframework.web.bind.annotation.GetMapping;
|
28
|
-
|
29
|
-
import org.springframework.web.bind.annotation.ModelAttribute;
|
30
|
-
|
31
|
-
import org.springframework.web.bind.annotation.PathVariable;
|
32
|
-
|
33
|
-
import org.springframework.web.bind.annotation.PostMapping;
|
34
|
-
|
35
|
-
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
@Controller
|
40
|
-
|
41
|
-
public class EditController {
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
@Autowired
|
46
|
-
|
47
|
-
BillingService BillingService;
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
@GetMapping(value = "/edit/{id}")
|
52
|
-
|
53
|
-
public String edit(@PathVariable("id") final Integer id, Model model) {
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
Billing Billing = BillingService.findById(id);
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
model.addAttribute("title", "編集画面");
|
62
|
-
|
63
|
-
model.addAttribute("billing", Billing);
|
64
|
-
|
65
|
-
return "edit";
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
}
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
@PostMapping(value = "/update")
|
74
|
-
|
75
|
-
public String update(@ModelAttribute final BillingEditRequest BillingEditRequest,
|
76
|
-
|
77
|
-
RedirectAttributes RedirectAttributes, Model model) {
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
BillingService.edit(BillingEditRequest);
|
82
|
-
|
83
|
-
|
1
|
+
回答してくれる方がわかりやすいような質問を心がけましょう。具体的な事象やソースコード、既に試行した事を記載すると議論にならずスムーズに回答が得られやすくなります。質問するときのヒントも参照ください。
|
84
|
-
|
85
|
-
return "redirect:/billinghistory/{app}";
|
86
|
-
|
87
|
-
}
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
}
|